wok annotate knock/receipt @ rev 16819

auth test, fix dep
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Fri Jul 11 10:31:39 2014 +0000 (2014-07-11)
parents 9c3435378d26
children 216fe5c85b71
rev   line source
pascal@1435 1 # SliTaz package receipt.
pascal@1435 2
pascal@1435 3 PACKAGE="knock"
pascal@1435 4 VERSION="0.5"
pascal@1435 5 CATEGORY="security"
pascal@1435 6 SHORT_DESC="Port knock sequence listener."
pascal@1435 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15601 8 LICENSE="GPL2"
pascal@1435 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1435 10 WEB_SITE="http://www.zeroflux.org/$PACKAGE"
pascal@1435 11 WGET_URL="http://www.zeroflux.org/proj/$PACKAGE/files/$TARBALL"
pascal@1586 12 CONFIG_FILES="/etc/knockd.conf"
pascal@1435 13
erjo@9935 14 DEPENDS="iptables"
erjo@9935 15 BUILD_DEPENDS="libpcap-dev"
erjo@9935 16
pascal@1435 17 # Rules to configure and make the package.
pascal@1435 18 compile_rules()
pascal@1435 19 {
pascal@1435 20 cd $src
slaxemulator@9700 21 [ -f done.knock.u ] || patch -p1 < $stuff/knock.u
pascal@1461 22 touch done.knock.u
pascal@1435 23 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1435 24 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1435 25 make &&
erjo@9935 26 make DESTDIR=$DESTDIR install
pascal@1435 27 }
pascal@1435 28
pascal@1435 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1435 30 genpkg_rules()
pascal@1435 31 {
pascal@1435 32 mkdir -p $fs/usr
pascal@15601 33 cp -a $install/etc $fs
pascal@15601 34 cp -a $install/usr/sbin $fs/usr
pascal@15601 35 cp -a $install/usr/bin $fs/usr
pascal@1435 36 cp -a stuff/etc $fs
pascal@1435 37 }
pascal@1435 38