summaryrefslogtreecommitdiff
path: root/package/apr-util/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'package/apr-util/Makefile')
-rw-r--r--package/apr-util/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/apr-util/Makefile b/package/apr-util/Makefile
new file mode 100644
index 000000000..64c7c33a3
--- /dev/null
+++ b/package/apr-util/Makefile
@@ -0,0 +1,31 @@
+# $Id$
+#-
+# 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:= apr-util
+PKG_VERSION:= 0.9.15
+PKG_RELEASE:= 1
+PKG_MD5SUM:= dc772ae295f49ddb8ee8e69a9716c53b
+MASTER_SITES:= http://apache.mirror.clusters.cc/apr/
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,APR_UTIL,$(PKG_NAME),${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
+
+CONFIGURE_STYLE:= gnu
+CONFIGURE_ARGS+= --without-berkeley-db
+CONFIGURE_ARGS+= --with-apr=${STAGING_DIR}/usr
+CONFIGURE_ARGS+= --with-expat=${STAGING_DIR}/usr
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+XAKE_FLAGS+= apr_builddir=${STAGING_DIR}/usr/share/build \
+ apr_builders=${STAGING_DIR}/usr/share/build
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_APR_UTIL}/usr/lib
+ ${CP} ${WRKINST}/usr/lib/libaprutil-0.so* ${IDIR_APR_UTIL}/usr/lib/
+
+include ${TOPDIR}/mk/pkg-bottom.mk