blob: 53d379a1d36a52cf92069b7da3c0c9f07c01a3d5 (
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=2
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
14 make CFLAGS+=" -fcommon" iftop
15 make DESTDIR=$PKG install
16 }
|