wok annotate iptraf/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents 17e313b5b9c1
children 5f489761d0c4
rev   line source
pascal@10906 1 # SliTaz package receipt.
pascal@10906 2
pascal@10906 3 PACKAGE="iptraf"
pascal@10906 4 VERSION="3.0.0"
pascal@10906 5 CATEGORY="network"
pascal@10906 6 SHORT_DESC="IP Network Monitoring Software."
pascal@10906 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15600 8 LICENSE="GPL2"
pascal@10906 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@10906 10 WEB_SITE="http://$PACKAGE.seul.org/"
pascal@10906 11 WGET_URL="ftp://$PACKAGE.seul.org/pub/$PACKAGE/$TARBALL"
pascal@15600 12
pascal@10906 13 DEPENDS="ncurses"
pascal@10906 14 BUILD_DEPENDS="ncurses-dev"
pascal@10906 15
pascal@10906 16 # Rules to configure and make the package.
pascal@10906 17 compile_rules()
pascal@10906 18 {
pascal@10906 19 cd $src/src
pascal@17673 20 sed -i 's/lncurses/& -ltinfo/' Makefile
pascal@10906 21 mkdir -p $DESTDIR/usr/bin 2> /dev/null
pascal@10906 22 sed -i 's/ARPHRD_PPP:$/& case ARPHRD_NONE:/' packet.c
pascal@10906 23 sed -i 's|/local/|/|' Makefile
pascal@10906 24 make clean &&
pascal@10906 25 make &&
pascal@10906 26 cp rvnamed rawtime iptraf $DESTDIR/usr/bin
pascal@10906 27 }
pascal@10906 28
pascal@10906 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@10906 30 genpkg_rules()
pascal@10906 31 {
mojo@14993 32 mkdir -p $fs/run/iptraf
mojo@14993 33 cp -a $install/* $fs
pascal@10906 34 }