blob: 6d7c7cf9bd05cd7a365458126f93c0f6586f4bc3 (
plain)
1 # Description: Real-time bandwidth usage information on a network interface
2 # URL: http://www.ex-parrot.com/~pdw/iftop/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: libpcap, ncurses
5
6 name=iftop
7 version=1.0pre2
8 release=1
9 source=(http://www.ex-parrot.com/~pdw/iftop/download/$name-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13 ./configure --prefix=/usr --mandir=/usr/man
14 make iftop
15 make DESTDIR=$PKG install
16 }
|