diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-05 21:19:09 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-05 21:19:09 +0100 |
commit | 0d26df21995dc2f25041974fb6faf3ec31be6467 (patch) | |
tree | 5c7d127a7440047678be887af89ad2c4029f7b92 /package/pkgconf/Makefile | |
parent | da41715f82af9f47cfe64a5c71fb998ba3ebc335 (diff) | |
parent | c60450e51bf32ef6993ece3496cd8cdcb93b8e04 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/pkgconf/Makefile')
-rw-r--r-- | package/pkgconf/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/package/pkgconf/Makefile b/package/pkgconf/Makefile new file mode 100644 index 000000000..b1131003a --- /dev/null +++ b/package/pkgconf/Makefile @@ -0,0 +1,35 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= pkgconf +PKG_VERSION:= 0.9.3 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 52c553bad686f8be1556b58bc1925f4f +PKG_DESCR:= smart pkg-config replacement +PKG_SECTION:= lang +PKG_URL:= https://github.com/pkgconf/pkgconf +PKG_SITES:= http://rabbit.dereferenced.org/~nenolod/distfiles/ + +DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2 + +include $(TOPDIR)/mk/host.mk +include $(TOPDIR)/mk/package.mk + +$(eval $(call HOST_template,PKGCONF,pkgconf,$(PKG_VERSION)-${PKG_RELEASE})) +$(eval $(call PKG_template,PKGCONF,pkgconf,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +HOST_STYLE:= auto + +hostpost-install: + (cd $(STAGING_HOST_DIR)/usr/bin && ln -sf pkgconf pkg-config) + +pkgconf-install: + $(INSTALL_DIR) $(IDIR_PKGCONF)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/bin/pkgconf \ + $(IDIR_PKGCONF)/usr/bin + (cd $(IDIR_PKGCONF)/usr/bin && ln -sf pkgconf pkg-config) + +include ${TOPDIR}/mk/host-bottom.mk +include ${TOPDIR}/mk/pkg-bottom.mk |