wok annotate knock/receipt @ rev 1435

Add knock
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 01 11:27:07 2008 +0000 (2008-10-01)
parents
children b94e60fe7b4e
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@1435 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1435 9 WEB_SITE="http://www.zeroflux.org/$PACKAGE"
pascal@1435 10 WGET_URL="http://www.zeroflux.org/proj/$PACKAGE/files/$TARBALL"
pascal@1435 11 CONFIG_FILES="/etc/knock"
pascal@1435 12
pascal@1435 13 # Rules to configure and make the package.
pascal@1435 14 compile_rules()
pascal@1435 15 {
pascal@1435 16 cd $src
pascal@1435 17 patch -p1 < ../stuff/knock.u
pascal@1435 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1435 19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1435 20 make &&
pascal@1435 21 make DESTDIR=$PWD/_pkg install
pascal@1435 22 }
pascal@1435 23
pascal@1435 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1435 25 genpkg_rules()
pascal@1435 26 {
pascal@1435 27 mkdir -p $fs/usr
pascal@1435 28 cp -a $_pkg/etc $fs
pascal@1435 29 cp -a $_pkg/usr/sbin $fs/usr
pascal@1435 30 cp -a $_pkg/usr/bin $fs/usr
pascal@1435 31 cp -a stuff/etc $fs
pascal@1435 32 }
pascal@1435 33