mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-02 08:35:06 -04:00
ef8fd03c33
added all the newer scripts/ added pacman.d and abs sysconf subdirs Minor makepkg revert for previous change to 'errexit' shell option
13 lines
343 B
Makefile
13 lines
343 B
Makefile
EXTRA_DIST = community current extra release unstable
|
|
|
|
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
|