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.
|
- Version=0.8
-
- PREFIX = /usr/local
-
- ICONS = \
- $(wildcard icons/*.svg) \
- $(wildcard icons/*.png)
-
- BACKGROUNDS = \
- $(wildcard backgrounds/*.jpg) \
- $(wildcard backgrounds/*.png)
-
- install_icons:
- install -dm0755 $(DESTDIR)$(PREFIX)/share/icons/artix
- install -m0644 ${ICONS} $(DESTDIR)$(PREFIX)/share/icons/artix
-
- install_backgrounds:
- install -dm0755 $(DESTDIR)$(PREFIX)/share/backgrounds
- install -m0755 ${BACKGROUNDS} $(DESTDIR)$(PREFIX)/share/backgrounds
- install -dm0755 $(DESTDIR)$(PREFIX)/share/gnome-background-properties
- install -m0755 backgrounds/artix.xml $(DESTDIR)$(PREFIX)/share/gnome-background-properties/artix.xml
-
- install: install_icons install_backgrounds
-
- .PHONY: install
|