summaryrefslogtreecommitdiff
path: root/package/daq/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-07-18 14:28:21 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-07-18 14:28:21 +0200
commit2d410f5d6775bf58eb86d2bd9af22cb6d23777a9 (patch)
treec2bf9d417feb6dd8d602bbe45a4cf8f1d16acf57 /package/daq/Makefile
parentcc3b5823e3827a280ec757e7a775c1bac944259d (diff)
parent646fff13466f38f6f99b15dc5e146b864e6448eb (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/daq/Makefile')
-rw-r--r--package/daq/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/daq/Makefile b/package/daq/Makefile
new file mode 100644
index 000000000..f6bcd0501
--- /dev/null
+++ b/package/daq/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:= daq
+PKG_VERSION:= 2.0.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= a00855a153647df76d47f1ea454f74ae
+PKG_DESCR:= daq
+PKG_SECTION:= libs
+PKG_DEPENDS:= libpcap
+PKG_BUILDDEP:= libpcap
+PKG_URL:= http://www.snort.org
+PKG_SITES:= http://openadk.org/distfiles/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,DAQ,daq,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+daq-install:
+ $(INSTALL_DIR) $(IDIR_DAQ)/usr/lib/daq
+ $(CP) $(WRKINST)/usr/lib/daq/*.so \
+ $(IDIR_DAQ)/usr/lib/daq
+ $(CP) $(WRKINST)/usr/lib/*.so* \
+ $(IDIR_DAQ)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk