wok annotate iptstate/receipt @ rev 17102

Add iptstate
author Paul Issott <paul@slitaz.org>
date Fri Aug 29 20:58:08 2014 +0100 (2014-08-29)
parents
children cc6bbcf323fa
rev   line source
paul@17102 1 # SliTaz package receipt.
paul@17102 2
paul@17102 3 PACKAGE="iptstate"
paul@17102 4 VERSION="2.2.5"
paul@17102 5 CATEGORY="network"
paul@17102 6 SHORT_DESC=" IPTState is a top-like interface to your netfilter connection-tracking table."
paul@17102 7 MAINTAINER="paul@slitaz.org"
paul@17102 8 DEPENDS="ncurses libnetfilter_conntrack libnfnetlink iptables"
paul@17102 9 BUILD_DEPENDS="ncurses-dev libnetfilter_conntrack-dev libnfnetlink-dev"
paul@17102 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
paul@17102 11 WEB_SITE="http://www.phildev.net/iptstate/"
paul@17102 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
paul@17102 13
paul@17102 14 # Rules to configure and make the package.
paul@17102 15 compile_rules()
paul@17102 16 {
paul@17102 17 cd $src
paul@17102 18 make
paul@17102 19 }
paul@17102 20
paul@17102 21 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@17102 22 genpkg_rules()
paul@17102 23 {
paul@17102 24 mkdir -p $fs/usr/sbin
paul@17102 25 cp -a $src/$PACKAGE $fs/usr/sbin
paul@17102 26 }
paul@17102 27