wok annotate pktstat/receipt @ rev 14215
Up: thunderbird-langpack-* (17.0.4esr)
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Sat Mar 16 21:38:39 2013 +0100 (2013-03-16) |
parents | f76dfd2f15d4 |
children | 1040bd60b471 |
rev | line source |
---|---|
paul@7829 | 1 # SliTaz package receipt. |
paul@7829 | 2 |
paul@7829 | 3 PACKAGE="pktstat" |
paul@13920 | 4 VERSION="1.8.5" |
paul@7829 | 5 CATEGORY="network" |
paul@13920 | 6 SHORT_DESC="Real-time interface traffic viewer for ncurses." |
paul@7829 | 7 MAINTAINER="paul@slitaz.org" |
paul@7829 | 8 DEPENDS="ncurses libpcap" |
paul@7829 | 9 BUILD_DEPENDS="ncurses-dev libpcap-dev" |
paul@7829 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@13920 | 11 WEB_SITE="http://www.adaptive-enterprises.com.au/~d/software/pktstat/" |
paul@13920 | 12 WGET_URL="http://www.adaptive-enterprises.com.au/~d/software/pktstat/$TARBALL" |
paul@7829 | 13 |
paul@7829 | 14 # Rules to configure and make the package. |
paul@7829 | 15 compile_rules() |
paul@7829 | 16 { |
paul@7829 | 17 cd $src |
paul@7829 | 18 ./configure \ |
paul@7829 | 19 --prefix=/usr \ |
paul@7829 | 20 --infodir=/usr/share/info \ |
paul@7829 | 21 --mandir=/usr/share/man \ |
paul@7829 | 22 $CONFIGURE_ARGS && |
paul@13920 | 23 make && make DESTDIR=$DESTDIR install |
paul@7829 | 24 } |
paul@7829 | 25 |
paul@7829 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@7829 | 27 genpkg_rules() |
paul@7829 | 28 { |
paul@7829 | 29 mkdir -p $fs/usr |
paul@13920 | 30 cp -a $install/usr/bin $fs/usr |
paul@7829 | 31 } |
paul@7829 | 32 |