makedepends=(libpcap ncurses)

packager="Great-OS Team"
maintainer="sipo"

description="Display bandwidth usage on an interface"
url="http://www.ex-parrot.com/~pdw/iftop/"

name=iftop
version=1.0pre4

source=(http://www.ex-parrot.com/~pdw/iftop/download/$name-$version.tar.gz)

build(){

  cd $name-$version

  CFLAGS+=' -fcommon' # https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common

  ./configure --prefix=/usr \
              --sbindir=/usr/bin \
              --mandir=/usr/share/man
  make
}

package() {

  make -C $name-$version DESTDIR="$PKG" install
}
