# HG changeset patch # User Pascal Bellard # Date 1455297652 -3600 # Node ID f42912c1cf7b7d865ed7aa984b8243bdd0ee2c16 # Parent e2bb92651e6ce93295e5616d14de511941af34e2 Add ufw diff -r e2bb92651e6c -r f42912c1cf7b ufw/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ufw/receipt Fri Feb 12 18:20:52 2016 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="ufw" +VERSION="0.34" +CATEGORY="security" +SHORT_DESC="Uncomplicated Firewall, a cli for managing netfilter" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL3" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://launchpad.net/ufw" +WGET_URL="$WEB_SITE/$VERSION/$VERSION/+download/$TARBALL" +TAGS="firewall" + +DEPENDS="python iptables" +BUILD_DEPENDS="python iptables" + +# Rules to configure and make the package. +compile_rules() +{ + python setup.py build + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs/ +}