2007-05-15 08:35:25 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=flow-tools
|
|
|
|
PKG_VERSION:=0.68
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=ftp://ftp.eng.oar.net/pub/flow-tools/
|
|
|
|
PKG_MD5SUM:=c9e0a8b53c79611b6bffcb9d510a5a38
|
|
|
|
|
2007-05-28 13:47:42 +00:00
|
|
|
PKG_BUILD_DEPENDS:=+zlib
|
|
|
|
|
2007-05-15 08:35:25 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/flow-tools
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=flow-tools
|
|
|
|
URL:=http://www.splintered.net/sw/flow-tools/
|
2012-06-11 23:30:29 +00:00
|
|
|
DEPENDS:=+zlib
|
2007-05-15 08:35:25 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/flow-tools/description
|
|
|
|
Flow-tools is a software package for collecting and processing
|
|
|
|
NetFlow data from Cisco and Juniper routers.
|
|
|
|
endef
|
|
|
|
|
2007-05-15 08:35:25 +00:00
|
|
|
define Build/Compile
|
2007-05-28 14:04:48 +00:00
|
|
|
$(call Build/Compile/Default,all)
|
2007-05-15 08:35:25 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/flow-tools/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin/
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/src/flow-* $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,flow-tools))
|