index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | etc/pacman.d/Makefile.am | 12 |
diff --git a/etc/pacman.d/Makefile.am b/etc/pacman.d/Makefile.am new file mode 100644 index 00000000..5d83f8f7 --- /dev/null +++ b/etc/pacman.d/Makefile.am @@ -0,0 +1,12 @@ +EXTRA_DIST = + +install-data-hook: + mkdir -p $(DESTDIR)$(sysconfdir)/pacman.d ; \ + for j in $(EXTRA_DIST); do \ + $(INSTALL) -c -m 644 $(srcdir)/$$j $(DESTDIR)$(sysconfdir)/pacman.d/$$j ; \ + done + +uninstall-hook: + for j in $(EXTRA_DIST); do \ + rm -f $(DESTDIR)$(sysconfdir)/pacman.d/$$j ; \ + done |