You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
766 B
27 lines
766 B
Version=0.7 |
|
|
|
PREFIX = /usr/local |
|
|
|
THEME = \ |
|
artix/artix-banner.svg \ |
|
artix/theme.conf \ |
|
artix/Main.qml \ |
|
artix/metadata.desktop \ |
|
artix/rectangle.png \ |
|
artix/angle-down.png |
|
COMPONENTS = artix/components |
|
|
|
install: |
|
install -dm0755 $(DESTDIR)$(PREFIX)/share/sddm/themes/artix/components |
|
install -m0644 ${THEME} $(DESTDIR)$(PREFIX)/share/sddm/themes/artix |
|
install -m0644 ${COMPONENTS}/* $(DESTDIR)$(PREFIX)/share/sddm/themes/artix/components |
|
|
|
|
|
uninstall: |
|
for f in ${THEME} ${COMPONENTS}; do rm -fr $(DESTDIR)$(PREFIX)/share/sddm/themes/artix/$f; done |
|
|
|
dist: |
|
git archive --format=tar --prefix=sddm-theme-$(Version)/ $(Version) | gzip -9 > sddm-theme-$(Version).tar.gz |
|
gpg --detach-sign --use-agent sddm-theme-$(Version).tar.gz |
|
|
|
.PHONY: install uninstall dist
|
|
|