wok annotate iptraf/receipt @ rev 17590

Up: gdk-pixbuf 2.31.2
author Alexander Medvedev <devl547@gmail.com>
date Mon Feb 09 21:52:32 2015 +0000 (2015-02-09)
parents 45e32b7f12f9
children 17e313b5b9c1
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@10906 20 mkdir -p $DESTDIR/usr/bin 2> /dev/null
pascal@10906 21 sed -i 's/ARPHRD_PPP:$/& case ARPHRD_NONE:/' packet.c
pascal@10906 22 sed -i 's|/local/|/|' Makefile
pascal@10906 23 make clean &&
pascal@10906 24 make &&
pascal@10906 25 cp rvnamed rawtime iptraf $DESTDIR/usr/bin
pascal@10906 26 }
pascal@10906 27
pascal@10906 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@10906 29 genpkg_rules()
pascal@10906 30 {
mojo@14993 31 mkdir -p $fs/run/iptraf
mojo@14993 32 cp -a $install/* $fs
pascal@10906 33 }