diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-03-01 13:19:12 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-03-01 13:19:12 +0100 |
commit | f2ea9e8dbd4cc3c77ff4cc52688d7057d3289fab (patch) | |
tree | 72ec81acffa69f2c89e52a38603a6f92fb1e72ae /package/tcptrace/Makefile | |
parent | dce7d2df8c73896aeef77118fe89fc7e88d035fe (diff) | |
parent | 0943b7422376747a452bda5562c73d673cccbe68 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/tcptrace/Makefile')
-rw-r--r-- | package/tcptrace/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/package/tcptrace/Makefile b/package/tcptrace/Makefile new file mode 100644 index 000000000..b780a8f84 --- /dev/null +++ b/package/tcptrace/Makefile @@ -0,0 +1,31 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= tcptrace +PKG_VERSION:= 6.6.7 +PKG_RELEASE:= 1 +PKG_HASH:= 63380a4051933ca08979476a9dfc6f959308bc9f60d45255202e388eb56910bd +PKG_DESCR:= tool for analyzing network packet dumps +PKG_SECTION:= net/debug +PKG_DEPENDS:= libpcap +PKG_BUILDDEP:= libpcap +PKG_URL:= http://www.tcptrace.org +PKG_SITES:= http://www.tcptrace.org/download/ + +DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,TCPTRACE,tcptrace,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION))) + +FAKE_FLAGS:= BINDIR="$(WRKINST)/usr/bin" MANDIR="$(WRKINST)/usr/man" INSTALL="install -D" +TARGET_CPPFLAGS+= -D_BSD_SOURCE + +tcptrace-install: + $(INSTALL_DIR) $(IDIR_TCPTRACE)/usr/bin + $(INSTALL_BIN) $(WRKINST)/usr/bin/tcptrace \ + $(IDIR_TCPTRACE)/usr/bin + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |