packages/net/tstat/Makefile
juhosg 77fa40438b packages: add tstat
Tstat is a passive sniffer able to provide several insight on the
traffic patterns at both the network and the transport levels.

http://tstat.tlc.polito.it

Signed-off-by: Tivadar Szemethy <tivadar.szemethy@netvisor.hu>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@37196 3c298f89-4303-0410-b956-a3cf2f4a3e73
2013-07-08 08:41:42 +00:00

42 lines
1023 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=tstat
PKG_REV:=528
PKG_VERSION:=r$(PKG_REV)
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://tstat.polito.it/svn/software/tstat/trunk
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=$(PKG_REV)
PKG_SOURCE_PROTO:=svn
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
PKG_BUILD_DEPENDS:=libpcap libpthread
define Package/tstat
SECTION:=net
CATEGORY:=Network
TITLE:=TCP STatistic and Analysis Tool from POLITO
URL:=http://tstat.tlc.polito.it
DEPENDS:=+libpcap +libpthread +zlib
MAINTAINER:=Tivadar Szemethy <tivadar.szemethy@netvisor.hu>
endef
define Package/tstat/description
Tstat is a passive sniffer able to provide several insight on the traffic
patterns at both the network and the transport levels.
endef
define Package/tstat/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tstat/tstat $(1)/usr/bin/
endef
$(eval $(call BuildPackage,tstat))