DESCRIPTION:= is obselete
[packages.git] / net / flow-tools / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=flow-tools
12 PKG_VERSION:=0.68
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=ftp://ftp.eng.oar.net/pub/flow-tools/
17 PKG_MD5SUM:=c9e0a8b53c79611b6bffcb9d510a5a38
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 PKG_BUILD_DEPENDS:=+zlib
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/flow-tools
27   SECTION:=net
28   CATEGORY:=Network
29   TITLE:=flow-tools
30   URL:=http://www.splintered.net/sw/flow-tools/
31 endef
32
33 define Package/flow-tools/description
34         Flow-tools is a software package for collecting and processing 
35         NetFlow data from Cisco and Juniper routers.
36 endef
37
38 define Build/Compile
39         $(call Build/Compile/Default,all)
40 endef
41
42 define Package/flow-tools/install       
43         $(INSTALL_DIR) $(1)/usr/bin/
44         $(CP) $(PKG_BUILD_DIR)/src/flow-* $(1)/usr/bin/
45 endef
46
47 $(eval $(call BuildPackage,flow-tools))