Install an objfw-config package

This commit is contained in:
Jonathan Schleifer 2019-01-20 13:45:48 +01:00
parent 376e4ce7e0
commit 8781264a61
No known key found for this signature in database
GPG key ID: 79D21189A2D4708D
4 changed files with 34 additions and 6 deletions

View file

@ -3,3 +3,26 @@ SUBDIRS = src tests
tests: src
include buildsys.mk
include extra.mk
install-extra:
i=ObjXMPP.oc; \
packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \
${INSTALL_STATUS}; \
if ${MKDIR_P} $$packagesdir && ${INSTALL} -m 644 $$i $$packagesdir/$$i; then \
${INSTALL_OK}; \
else \
${INSTALL_FAILED}; \
fi
uninstall-extra:
i=ObjXMPP.oc; \
packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \
if test -f $$packagesdir/$$i; then \
if rm -f $$packagesdir/$$i; then \
${DELETE_OK}; \
else \
${DELETE_FAILED}; \
fi \
fi; \
rmdir $$packagesdir >/dev/null 2>&1 || true