Fresh pull from upstream 17.01 branch
[librecmc/librecmc.git] / package / network / utils / 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_RELEASE:=1
12
13 PKG_SOURCE_PROTO:=git
14 PKG_SOURCE_URL:=https://code.blinkace.com/pdw/iftop.git
15 PKG_SOURCE_DATE:=2017-02-06
16 PKG_SOURCE_VERSION:=35af3cf65f17961d173b31fd3b00166ec095c226
17 PKG_MIRROR_HASH:=84131e2448ea5aa884d2bd7d58dc81741b5c476b4664a8c2c1eb34f62985804a
18 PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
19 PKG_LICENSE:=GPL-2.0
20
21 PKG_FIXUP:=autoreconf
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/iftop
26   SECTION:=net
27   CATEGORY:=Network
28   DEPENDS:=+libpcap +libncurses +libpthread
29   TITLE:=display bandwith usage on an interface
30   URL:=http://www.ex-parrot.com/~pdw/iftop/
31 endef
32
33 define Package/iftop/description
34         iftop does for network usage what top(1) does for CPU usage. It 
35         listens to network traffic on a named interface and displays a 
36         table of current bandwidth usage by pairs of hosts. Handy for 
37         answering the question 'why is our ADSL link so slow?'.
38 endef
39
40 define Package/iftop/install    
41         $(INSTALL_DIR) $(1)/usr/bin
42         $(INSTALL_BIN) $(PKG_BUILD_DIR)/iftop $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,iftop))