wok annotate pktstat/receipt @ rev 14495

kbd-base/stuff/keymaps-path.list: add greek keymaps
author Richard Dunbar <mojo@slitaz.org>
date Thu May 09 20:32:53 2013 +0000 (2013-05-09)
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