blob: 62d3f839ffc70dc635d231589a41ea2e320bfa58 (
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.0pre4
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 }
|