wok-6.x annotate pktstat/receipt @ rev 23050
Up claws-mail (3.17.5)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Mar 06 15:13:42 2020 +0100 (2020-03-06) |
parents | 3ba8d2c9720d |
children | b569b85b0fb9 |
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" |
pascal@20679 | 10 WEB_SITE="https://github.com/dleonard0/pktstat" |
paul@13920 | 11 WGET_URL="http://www.adaptive-enterprises.com.au/~d/software/pktstat/$TARBALL" |
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 { |
pascal@17672 | 19 export LDFLAGS="$LDFLAGS -ltinfo" |
paul@7829 | 20 ./configure \ |
paul@7829 | 21 --prefix=/usr \ |
paul@7829 | 22 --infodir=/usr/share/info \ |
paul@7829 | 23 --mandir=/usr/share/man \ |
paul@7829 | 24 $CONFIGURE_ARGS && |
paul@13920 | 25 make && make DESTDIR=$DESTDIR install |
paul@7829 | 26 } |
paul@7829 | 27 |
paul@7829 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@7829 | 29 genpkg_rules() |
paul@7829 | 30 { |
paul@7829 | 31 mkdir -p $fs/usr |
paul@13920 | 32 cp -a $install/usr/bin $fs/usr |
paul@7829 | 33 } |