Makefile 1.2 KB

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