blob: 98c00b19eaf2024800a3cc0ebf1168654fb00d12 (
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.6
8 release=1
9 source=(https://github.com/raboof/nethogs/archive/v$version/$name-v$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 make
14 make PREFIX=/usr DESTDIR=$PKG install
15 }
|