1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/etc/pacman.d/Makefile.am

13 lines
343 B
Makefile
Raw Normal View History

EXTRA_DIST = community current extra release unstable
2006-10-15 18:08:57 -04:00
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