wok diff iftop/receipt @ rev 16385
ntk-dev: add deps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Apr 15 07:39:51 2014 +0000 (2014-04-15) |
parents | 209f2ed52094 |
children | c7c3567bd8d4 |
line diff
1.1 --- a/iftop/receipt Sun Nov 07 19:07:37 2010 +0000 1.2 +++ b/iftop/receipt Tue Apr 15 07:39:51 2014 +0000 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="system-tools" 1.5 SHORT_DESC="Bandwidth usage on an interface." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="GPL2" 1.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.9 WEB_SITE="http://ex-parrot.com/~pdw/iftop/" 1.10 WGET_URL="${WEB_SITE}download/$TARBALL" 1.11 +TAGS="network monitor usage" 1.12 + 1.13 BUILD_DEPENDS="libpcap-dev ncurses-dev" 1.14 DEPENDS="libpcap ncurses" 1.15 -TAGS="network monitor usage" 1.16 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 @@ -19,13 +21,13 @@ 1.20 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.21 --mandir=/usr/share/man $CONFIGURE_ARGS 1.22 make 1.23 - make DESTDIR=$PWD/_pkg install 1.24 + make DESTDIR=$DESTDIR install 1.25 } 1.26 1.27 # Rules to gen a SliTaz package suitable for Tazpkg. 1.28 genpkg_rules() 1.29 { 1.30 mkdir -p $fs/usr/ 1.31 - cp -a $_pkg/usr/sbin $fs/usr 1.32 + cp -a $install/usr/sbin $fs/usr 1.33 } 1.34