summaryrefslogtreecommitdiff
path: root/package/pcrepp/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-05-19 11:41:44 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-05-19 11:41:44 +0200
commite8ca169ae2dcbbf86320f93de493de7c2cf1c1cc (patch)
tree35604465f5784360a4a83d36f79ac0cb6f8804c0 /package/pcrepp/Makefile
parent23013ef65cb2328d0958809ed88ab9a832440ace (diff)
parent957bb3959c18f96c9ac1c7553e897bbbd95f0d51 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/pcrepp/Makefile')
-rw-r--r--package/pcrepp/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/package/pcrepp/Makefile b/package/pcrepp/Makefile
new file mode 100644
index 000000000..639f5ad53
--- /dev/null
+++ b/package/pcrepp/Makefile
@@ -0,0 +1,33 @@
+# 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:= pcrepp
+PKG_VERSION:= 0.9.5
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 1fe6ea8e23ece01fde2ce5fb4746acc2
+PKG_DESCR:= Cpp Wrapper classes for PCRE
+PKG_SECTION:= libs
+PKG_URL:= http://www.daemon.de/PCRE
+PKG_SITES:= http://www.daemon.de/idisk/Apps/pcre++/
+PKG_DEPENDS:= libpcre
+PKG_BUILDDEP:= pcre
+PKG_NEED_CXX:= 1
+PKG_CXX:= pcrepp
+
+PKG_CFLINE_PCREPP:= depends on ADK_TARGET_LIB_EGLIBC || ADK_TARGET_LIB_GLIBC
+
+DISTFILES:= pcre++-${PKG_VERSION}.tar.gz
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,PCREPP,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+post-extract:
+ mv ${WRKDIR_BASE}/w-${PKG_NAME}-${PKG_VERSION}-${PKG_RELEASE}/pcre++-${PKG_VERSION} ${WRKBUILD}
+
+post-install:
+ ${CP} ${WRKINST}/* ${WRKINST}/../pkg-${PKG_NAME}
+
+include ${TOPDIR}/mk/pkg-bottom.mk