blob: 71b29c7761c4fa4d4c46e09baf7882ccbd1df162 (
plain)
1 # Description: net top tool showing network usage by PID
2 # URL: https://github.com/raboof/nethogs
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libpcap
5
6 name=nethogs
7 version=0.8.5
8 release=1
9 source=(https://github.com/raboof/nethogs/archive/v${version}.tar.gz)
10
11 build() {
12 cd $name-$version
13 make
14 make PREFIX=/usr DESTDIR=$PKG install
15 }
|