b738db70c5
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/packages@40255 3c298f89-4303-0410-b956-a3cf2f4a3e73
45 lines
978 B
Makefile
45 lines
978 B
Makefile
#
|
|
# Copyright (C) 2007-2014 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:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=ftp://ftp.eng.oar.net/pub/flow-tools/
|
|
PKG_MD5SUM:=c9e0a8b53c79611b6bffcb9d510a5a38
|
|
|
|
PKG_BUILD_DEPENDS:=+zlib
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/flow-tools
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=flow-tools
|
|
URL:=http://www.splintered.net/sw/flow-tools/
|
|
DEPENDS:=+zlib
|
|
endef
|
|
|
|
define Package/flow-tools/description
|
|
Flow-tools is a software package for collecting and processing
|
|
NetFlow data from Cisco and Juniper routers.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default,all)
|
|
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))
|