Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
3b0ee9b414 |
89
Makefile
89
Makefile
@@ -1,89 +0,0 @@
|
||||
VERSION=0.8
|
||||
|
||||
PKG = iso-profiles
|
||||
TOOLS = artools
|
||||
ifdef PREFIX
|
||||
PREFIX = /usr/local
|
||||
endif
|
||||
SYSCONFDIR = /etc
|
||||
PROFDIR = $(PREFIX)/share/$(TOOLS)/$(PKG)
|
||||
|
||||
BASEDIR = $(PROFDIR)/base
|
||||
OVERLAYDIR = $(BASEDIR)/live-overlay$(SYSCONFDIR)
|
||||
LXQTDIR = $(PROFDIR)/lxqt
|
||||
LXDEDOR = $(PROFDIR)/lxde
|
||||
|
||||
DMODE = -dm0755
|
||||
FMODE = -m0644
|
||||
RM = rm -f
|
||||
RMD = rm -fr --one-file-system
|
||||
|
||||
BASE = \
|
||||
$(wildcard base/Packages-*) \
|
||||
base/profile.conf
|
||||
|
||||
LIVE = \
|
||||
base/live-overlay/etc/fstab \
|
||||
base/live-overlay/etc/issue
|
||||
|
||||
LIVE_DEFAULT = \
|
||||
$(wildcard base/live-overlay/etc/default/*)
|
||||
|
||||
LIVE_PAM = \
|
||||
$(wildcard base/live-overlay/etc/pam.d/*)
|
||||
|
||||
LIVE_SUDOERS = \
|
||||
$(wildcard base/live-overlay/etc/sudoers.d/*)
|
||||
|
||||
LXQT = \
|
||||
$(wildcard lxqt/Packages-*) \
|
||||
lxqt/profile.conf
|
||||
|
||||
LXQT_DM = \
|
||||
lxqt/desktop-overlay/etc/sddm.conf
|
||||
|
||||
install-base:
|
||||
install $(DMODE) $(DESTDIR)$(BASEDIR)
|
||||
install $(FMODE) $(BASE) $(DESTDIR)$(BASEDIR)
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)
|
||||
install $(FMODE) $(LIVE) $(DESTDIR)$(OVERLAYDIR)
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/default
|
||||
install $(FMODE) $(LIVE_DEFAULT) $(DESTDIR)$(OVERLAYDIR)/default
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/pam.d
|
||||
install $(FMODE) $(LIVE_PAM) $(DESTDIR)$(OVERLAYDIR)/pam.d
|
||||
|
||||
install $(DMODE) $(DESTDIR)$(OVERLAYDIR)/sudoers.d
|
||||
install $(FMODE) $(LIVE_SUDOERS) $(DESTDIR)$(OVERLAYDIR)/sudoers.d
|
||||
|
||||
install-lxqt:
|
||||
install $(DMODE) $(DESTDIR)$(LXQTDIR)
|
||||
install $(FMODE) $(LXQT) $(DESTDIR)$(LXQTDIR)
|
||||
install $(DMODE) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)
|
||||
install $(FMODE) $(LXQT_DM) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)
|
||||
|
||||
uninstall-base:
|
||||
for f in $(notdir $(BASE)); do $(RM) $(DESTDIR)$(BASEDIR)/$$f; done
|
||||
for f in $(notdir $(LIVE)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/$$f; done
|
||||
for f in $(notdir $(LIVE_DEFAULT)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/default/$$f; done
|
||||
for f in $(notdir $(LIVE_PAM)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/pam.d/$$f; done
|
||||
for f in $(notdir $(LIVE_SUDOERS)); do $(RM) $(DESTDIR)$(OVERLAYDIR)/sudoers.d/$$f; done
|
||||
$(RMD) $(DESTDIR)$(BASEDIR)
|
||||
|
||||
uninstall-lxqt:
|
||||
for f in $(notdir $(LXQT)); do $(RM) $(DESTDIR)$(LXQTDIR)/$$f; done
|
||||
for f in $(notdir $(LXQT_DM)); do $(RM) $(DESTDIR)$(LXQTDIR)$(SYSCONFDIR)/$$f; done
|
||||
$(RMD) $(DESTDIR)$(LXQTDIR)
|
||||
|
||||
install: install-lxqt install-base
|
||||
|
||||
uninstall: uninstall-lxqt uninstall-base
|
||||
|
||||
dist:
|
||||
git archive --format=tar --prefix=$(PKG)-$(VERSION)/ $(VERSION) | gzip -9 > $(PKG)-$(VERSION).tar.gz
|
||||
gpg --detach-sign --use-agent $(PKG)-$(VERSION).tar.gz
|
||||
|
||||
.PHONY: install uninstall dist install-lxqt install-base uninstall-lxqt uninstall-base
|
||||
|
@@ -2,14 +2,14 @@ mkinitcpio-nfs-utils
|
||||
squashfs-tools
|
||||
nbd
|
||||
|
||||
>openrc artix-live-openrc
|
||||
>runit artix-live-runit
|
||||
@openrc artix-live-openrc
|
||||
@runit artix-live-runit
|
||||
artix-live-portable-efi
|
||||
|
||||
>openrc networkmanager-openrc
|
||||
>openrc ntp-openrc
|
||||
>openrc bluez-openrc
|
||||
@openrc networkmanager-openrc
|
||||
@openrc ntp-openrc
|
||||
@openrc bluez-openrc
|
||||
|
||||
>runit networkmanager-runit
|
||||
>runit ntp-runit
|
||||
>runit bluez-runit
|
||||
@runit networkmanager-runit
|
||||
@runit ntp-runit
|
||||
@runit bluez-runit
|
||||
|
@@ -45,29 +45,29 @@ mkinitcpio-openswap
|
||||
nano
|
||||
net-tools
|
||||
ntfs-3g
|
||||
>openrc acpid-openrc
|
||||
>openrc cronie-openrc
|
||||
>openrc cryptsetup-openrc
|
||||
>openrc dhcpcd-openrc
|
||||
>openrc haveged-openrc
|
||||
>openrc lvm2-openrc
|
||||
>openrc mdadm-openrc
|
||||
>openrc nfs-utils-openrc
|
||||
>openrc rsync-openrc
|
||||
>openrc openssh-openrc
|
||||
>openrc wpa_supplicant-openrc
|
||||
>openrc syslog-ng-openrc
|
||||
>runit acpid-runit
|
||||
>runit cronie-runit
|
||||
>runit dhcpcd-runit
|
||||
>runit haveged-runit
|
||||
>runit lvm2-runit
|
||||
>runit mdadm-runit
|
||||
>runit nfs-utils-runit
|
||||
>runit rsync-runit
|
||||
>runit openssh-runit
|
||||
>runit wpa_supplicant-runit
|
||||
>runit syslog-ng-runit
|
||||
@openrc acpid-openrc
|
||||
@openrc cronie-openrc
|
||||
@openrc cryptsetup-openrc
|
||||
@openrc dhcpcd-openrc
|
||||
@openrc haveged-openrc
|
||||
@openrc lvm2-openrc
|
||||
@openrc mdadm-openrc
|
||||
@openrc nfs-utils-openrc
|
||||
@openrc rsync-openrc
|
||||
@openrc openssh-openrc
|
||||
@openrc wpa_supplicant-openrc
|
||||
@openrc syslog-ng-openrc
|
||||
@runit acpid-runit
|
||||
@runit cronie-runit
|
||||
@runit dhcpcd-runit
|
||||
@runit haveged-runit
|
||||
@runit lvm2-runit
|
||||
@runit mdadm-runit
|
||||
@runit nfs-utils-runit
|
||||
@runit rsync-runit
|
||||
@runit openssh-runit
|
||||
@runit wpa_supplicant-runit
|
||||
@runit syslog-ng-runit
|
||||
artix-sysvcompat
|
||||
os-prober
|
||||
pacman
|
||||
|
@@ -9,22 +9,22 @@ modemmanager
|
||||
network-manager-applet
|
||||
nss-mdns
|
||||
|
||||
>openrc alsa-utils-openrc
|
||||
>openrc avahi-openrc
|
||||
>openrc displaymanager-openrc
|
||||
>openrc json-c
|
||||
>openrc networkmanager-openrc
|
||||
>openrc ntp-openrc
|
||||
>openrc openrc-settingsd
|
||||
>openrc bluez-openrc
|
||||
@openrc alsa-utils-openrc
|
||||
@openrc avahi-openrc
|
||||
@openrc displaymanager-openrc
|
||||
@openrc json-c
|
||||
@openrc networkmanager-openrc
|
||||
@openrc ntp-openrc
|
||||
@openrc openrc-settingsd
|
||||
@openrc bluez-openrc
|
||||
|
||||
>runit alsa-utils-runit
|
||||
>runit avahi-runit
|
||||
>runit sddm-runit
|
||||
>runit json-c
|
||||
>runit networkmanager-runit
|
||||
>runit ntp-runit
|
||||
>runit bluez-runit
|
||||
@runit alsa-utils-runit
|
||||
@runit avahi-runit
|
||||
@runit sddm-runit
|
||||
@runit json-c
|
||||
@runit networkmanager-runit
|
||||
@runit ntp-runit
|
||||
@runit bluez-runit
|
||||
|
||||
librabbitmq-c
|
||||
libmongoc
|
||||
|
@@ -2,8 +2,8 @@ mkinitcpio-nfs-utils
|
||||
squashfs-tools
|
||||
nbd
|
||||
|
||||
>openrc artix-live-openrc
|
||||
>runit artix-live-runit
|
||||
@openrc artix-live-openrc
|
||||
@runit artix-live-runit
|
||||
artix-live-portable-efi
|
||||
|
||||
calamares-branding
|
||||
|
Reference in New Issue
Block a user