wok rev 18891

Add ufw
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 12 18:20:52 2016 +0100 (2016-02-12)
parents e2bb92651e6c
children a2346222a89e
files ufw/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ufw/receipt	Fri Feb 12 18:20:52 2016 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ufw"
     1.7 +VERSION="0.34"
     1.8 +CATEGORY="security"
     1.9 +SHORT_DESC="Uncomplicated Firewall, a cli for managing netfilter"
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL3"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="https://launchpad.net/ufw"
    1.14 +WGET_URL="$WEB_SITE/$VERSION/$VERSION/+download/$TARBALL"
    1.15 +TAGS="firewall"
    1.16 +
    1.17 +DEPENDS="python iptables"
    1.18 +BUILD_DEPENDS="python iptables"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	python setup.py build
    1.24 +	python setup.py install --root=$DESTDIR
    1.25 +}
    1.26 +
    1.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.28 +genpkg_rules()
    1.29 +{
    1.30 +	cp -a $install/* $fs/
    1.31 +}