summaryrefslogtreecommitdiff
path: root/package/libnetfilter_cthelper
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-07-11 16:10:23 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-07-11 16:10:23 +0200
commit2c4dd825caf78de7b467409bd736703f6b0d08fb (patch)
tree0ffa393158c5bc2352c44407f0fdcb353d60a4a0 /package/libnetfilter_cthelper
parenta6aa7dd2e14c15de82f6ee8b94621913afb6212b (diff)
fix conntrack-tools compile
Diffstat (limited to 'package/libnetfilter_cthelper')
-rw-r--r--package/libnetfilter_cthelper/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/libnetfilter_cthelper/Makefile b/package/libnetfilter_cthelper/Makefile
new file mode 100644
index 000000000..d086fc7dd
--- /dev/null
+++ b/package/libnetfilter_cthelper/Makefile
@@ -0,0 +1,28 @@
+# 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:= libnetfilter_cthelper
+PKG_VERSION:= 1.0.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= b2efab1a3a198a5add448960ba011acd
+PKG_DESCR:= userspace library that provides the API to the user-space helper infrastructure
+PKG_SECTION:= libs
+PKG_DEPENDS:= libnfnetlink libmnl
+PKG_BUILDDEP:= libnfnetlink libmnl
+PKG_URL:= http://www.netfilter.org/projects/libnetfilter_cthelper/
+PKG_SITES:= http://www.netfilter.org/projects/libnetfilter_cthelper/files/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBNETFILTER_CTHELPER,libnetfilter-cthelper,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_LIBNETFILTER_CTHELPER)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libnetfilter_cthelper*so* \
+ $(IDIR_LIBNETFILTER_CTHELPER)/usr/lib/
+
+include ${TOPDIR}/mk/pkg-bottom.mk