[packages] rsync: update to 3.0.7
[packages.git] / net / iftop / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=iftop
11 PKG_VERSION:=0.17
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.ex-parrot.com/~pdw/iftop/download
16 PKG_MD5SUM:=062bc8fb3856580319857326e0b8752d
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/iftop
21   SECTION:=net
22   CATEGORY:=Network
23   DEPENDS:=+libpcap +libncurses +libpthread
24   TITLE:=display bandwith usage on an interface
25   URL:=http://www.ex-parrot.com/~pdw/iftop/
26 endef
27
28 define Package/iftop/description
29         iftop does for network usage what top(1) does for CPU usage. It 
30         listens to network traffic on a named interface and displays a 
31         table of current bandwidth usage by pairs of hosts. Handy for 
32         answering the question 'why is our ADSL link so slow?'.
33 endef
34
35 define Package/iftop/install    
36         $(INSTALL_DIR) $(1)/usr/bin
37         $(INSTALL_BIN) $(PKG_BUILD_DIR)/iftop $(1)/usr/bin/
38 endef
39
40 $(eval $(call BuildPackage,iftop))