Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
e1b83c3e9f | ||
![]() |
e7b1cabddd | ||
![]() |
82387419c3 | ||
![]() |
f8eed244a2 | ||
![]() |
8231ddcf2c |
35
Makefile
Normal file
35
Makefile
Normal file
@@ -0,0 +1,35 @@
|
||||
Version=0.4
|
||||
|
||||
PREFIX = /usr/local
|
||||
SYSCONFDIR = /etc
|
||||
|
||||
ICONS = \
|
||||
$(wildcard icons/*.svg) \
|
||||
$(wildcard icons/*.png)
|
||||
|
||||
BACKGROUNDS = \
|
||||
$(wildcard backgrounds/*.jpg)
|
||||
|
||||
install_icons:
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/icons/artix
|
||||
install -m0644 ${ICONS} $(DESTDIR)$(PREFIX)/share/icons/artix
|
||||
|
||||
install_backgrounds:
|
||||
install -dm0755 $(PREFIX)/share/backgrounds
|
||||
install -m0755 ${BACKGROUNDS} $(PREFIX)/share/backgrounds
|
||||
|
||||
uninstall_icons:
|
||||
for f in ${ICONS}; do rm -f $(DESTDIR)$(PREFIX)/share/icons/artix/$$f; done
|
||||
|
||||
uninstall_backgrounds:
|
||||
for f in ${BACKGROUNDS}; do rm -f $(DESTDIR)$(PREFIX)/share/backgrounds/$$f; done
|
||||
|
||||
install: install_icons install_backgrounds
|
||||
|
||||
uninstall: uninstall_icons uninstall_backgrounds
|
||||
|
||||
dist:
|
||||
git archive --format=tar --prefix=desktop-presets-$(Version)/ $(Version) | gzip -9 > desktop-presets-$(Version).tar.gz
|
||||
gpg --detach-sign --use-agent desktop-presets-$(Version).tar.gz
|
||||
|
||||
.PHONY: install uninstall dist
|
BIN
icons/logo.png
Normal file
BIN
icons/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 114 KiB |
2107
icons/logo.svg
Normal file
2107
icons/logo.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 155 KiB |
BIN
icons/logo_text.png
Normal file
BIN
icons/logo_text.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 110 KiB |
2216
icons/logo_text.svg
Normal file
2216
icons/logo_text.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 164 KiB |
Reference in New Issue
Block a user