manjaro-tools/Makefile

87 lines
2.2 KiB
Makefile
Raw Normal View History

2014-10-04 00:46:40 +02:00
V=20141001
PREFIX = /usr/local
BINPROGS = \
checkpkg \
manjarobuild \
lddd \
finddeps \
find-libdeps \
signpkg \
signpkgs \
mkmanjaroroot \
makechrootpkg \
build-set \
build-set-helper
SYSCONFIGFILES = \
devtools.conf
SETS = \
sets/default.set \
sets/udev.set \
sets/nosystemd.set \
sets/openrc.set \
sets/openrc-nodeps.set
CONFIGFILES = \
makepkg-i686.conf \
makepkg-x86_64.conf \
pacman-default.conf \
pacman-mirrors.conf \
pacman-multilib.conf
MANJAROBUILD_LINKS = \
stable-i686-build \
stable-x86_64-build \
stable-multilib-build \
testing-i686-build \
testing-x86_64-build \
testing-multilib-build \
unstable-i686-build \
unstable-x86_64-build \
unstable-multilib-build
all: $(BINPROGS)
edit = sed -e "s|@pkgdatadir[@]|$(DESTDIR)$(PREFIX)/share/devtools|g" \
-e "s|@sysconfdir[@]|$(DESTDIR)$(SYSCONFDIR)/devtools|g"
%: %.in Makefile lib/common.sh
@echo "GEN $@"
@$(RM) "$@"
@m4 -P $@.in | $(edit) >$@
@chmod a-w "$@"
@chmod +x "$@"
clean:
rm -f $(BINPROGS)
install:
install -dm0755 $(DESTDIR)$(SYSCONFDIR)/devtools
install -m0644 ${SYSCONFIGFILES} $(DESTDIR)$(SYSCONFDIR)/devtools
install -dm0755 $(DESTDIR)$(SYSCONFDIR)/devtools/sets
install -m0644 ${SETS} $(DESTDIR)$(SYSCONFDIR)/devtools/sets
install -dm0755 $(DESTDIR)$(PREFIX)/bin
install -dm0755 $(DESTDIR)$(PREFIX)/share/devtools
install -m0755 ${BINPROGS} $(DESTDIR)$(PREFIX)/bin
install -m0644 ${CONFIGFILES} $(DESTDIR)$(PREFIX)/share/devtools
for l in ${MANJAROBUILD_LINKS}; do ln -sf manjarobuild $(DESTDIR)$(PREFIX)/bin/$$l; done
ln -sf find-libdeps $(DESTDIR)$(PREFIX)/bin/find-libprovides
uninstall:
for f in ${SYSCONFIGFILES}; do rm -f $(DESTDIR)$(SYSCONFDIR)/devtools/$$f; done
for f in ${SETS}; do rm -f $(DESTDIR)$(SYSCONFDIR)/devtools/sets/$$f; done
for f in ${BINPROGS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$f; done
for f in ${CONFIGFILES}; do rm -f $(DESTDIR)$(PREFIX)/share/devtools/$$f; done
for l in ${MANJAROBUILD_LINKS}; do rm -f $(DESTDIR)$(PREFIX)/bin/$$l; done
rm -f $(DESTDIR)$(PREFIX)/bin/find-libprovides
dist:
git archive --format=tar --prefix=devtools-$(V)/ $(V) | gzip -9 > devtools-$(V).tar.gz
gpg --detach-sign --use-agent devtools-$(V).tar.gz
.PHONY: all clean install uninstall dist