rev |
line source |
pascal@18891
|
1 # SliTaz package receipt.
|
pascal@18891
|
2
|
pascal@18891
|
3 PACKAGE="ufw"
|
Hans-G?nter@22072
|
4 VERSION="0.36"
|
pascal@18891
|
5 CATEGORY="security"
|
Hans-G?nter@22072
|
6 TAGS="firewall"
|
Hans-G?nter@22072
|
7 SHORT_DESC="Uncomplicated Firewall, a cli for managing netfilter."
|
pascal@18891
|
8 MAINTAINER="pascal.bellard@slitaz.org"
|
pascal@18891
|
9 LICENSE="GPL3"
|
Hans-G?nter@22072
|
10 WEB_SITE="https://launchpad.net/ufw"
|
Hans-G?nter@22072
|
11
|
pascal@18891
|
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
|
pascal@18891
|
13 WGET_URL="$WEB_SITE/$VERSION/$VERSION/+download/$TARBALL"
|
pascal@18891
|
14
|
pascal@18891
|
15 DEPENDS="python iptables"
|
pascal@18891
|
16 BUILD_DEPENDS="python iptables"
|
pascal@18891
|
17
|
pascal@18891
|
18 # Rules to configure and make the package.
|
pascal@18891
|
19 compile_rules()
|
pascal@18891
|
20 {
|
pascal@18891
|
21 python setup.py build
|
pascal@18891
|
22 python setup.py install --root=$DESTDIR
|
pascal@18891
|
23 }
|
pascal@18891
|
24
|
pascal@18891
|
25 # Rules to gen a SliTaz package suitable for Tazpkg.
|
pascal@18891
|
26 genpkg_rules()
|
pascal@18891
|
27 {
|
pascal@18891
|
28 cp -a $install/* $fs/
|
pascal@18891
|
29 }
|