wok-next annotate pktstat/receipt @ rev 21010

Small updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 12 16:40:30 2018 +0300 (2018-10-12)
parents 466bca9334ef
children d5aab818505e
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"
pascal@15023 8 LICENSE="PublicDomain"
paul@7829 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20906 10 WEB_SITE="https://github.com/dleonard0/pktstat"
al@20906 11 WGET_URL="http://www.adaptive-enterprises.com.au/~d/software/pktstat/$TARBALL" # FIXME
paul@7829 12
pascal@15023 13 DEPENDS="ncurses libpcap"
pascal@15023 14 BUILD_DEPENDS="ncurses-dev libpcap-dev"
pascal@15023 15
paul@7829 16 # Rules to configure and make the package.
paul@7829 17 compile_rules()
paul@7829 18 {
paul@7829 19 ./configure \
paul@7829 20 --prefix=/usr \
paul@7829 21 --infodir=/usr/share/info \
paul@7829 22 --mandir=/usr/share/man \
paul@7829 23 $CONFIGURE_ARGS &&
paul@13920 24 make && make DESTDIR=$DESTDIR install
paul@7829 25 }
paul@7829 26
paul@7829 27 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7829 28 genpkg_rules()
paul@7829 29 {
paul@7829 30 mkdir -p $fs/usr
paul@13920 31 cp -a $install/usr/bin $fs/usr
paul@7829 32 }