summaryrefslogtreecommitdiff
path: root/package/pcrepp
diff options
context:
space:
mode:
authorTobias Breckle <tobias@breckle.net>2011-05-17 14:52:48 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-05-18 11:09:16 +0200
commitfe190b6c81a0992f9353fa10b7968deb976db93a (patch)
tree76ebcc0175e1f72054b49d3d455c9549b2392244 /package/pcrepp
parent94c9652cc3f4d33604b09155638b327cdbe9676e (diff)
new package: pcrepp (pcre wrapper for c++)
Signed-off-by: Tobias Breckle <tobias@breckle.net>
Diffstat (limited to 'package/pcrepp')
-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