You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
365 B
Makefile
12 lines
365 B
Makefile
3 years ago
|
V=20120504
|
||
|
|
||
|
PREFIX = /usr/local
|
||
|
|
||
|
install:
|
||
|
install -dm755 $(DESTDIR)$(PREFIX)/share/pacman/keyrings/
|
||
|
install -m0644 crystal{.gpg,-trusted,-revoked} $(DESTDIR)$(PREFIX)/share/pacman/keyrings/
|
||
|
|
||
|
uninstall:
|
||
|
rm -f $(DESTDIR)$(PREFIX)/share/pacman/keyrings/crystal{.gpg,-trusted,-revoked}
|
||
|
rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(PREFIX)/share/pacman/keyrings/
|