OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 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-03-22 |
||
16 | PKG_SOURCE_VERSION:=949ed0f7e2c54c598868c270b82c2d702131a339 |
||
17 | PKG_MIRROR_HASH:=2ba96d9a2adf4e43aaab439a9ccab8f21b415da48d1c8939f6dcea8e6e11524f |
||
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)) |