wok-next view ufw/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents f42912c1cf7b
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="ufw"
4 VERSION="0.35"
5 CATEGORY="security"
6 SHORT_DESC="Uncomplicated Firewall, a CLI for managing netfilter"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://launchpad.net/ufw"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/$VERSION/$VERSION/+download/$TARBALL"
14 BUILD_DEPENDS="python iptables"
16 compile_rules() {
17 python -B setup.py install --root=$install || return 1
19 find $install -type f -exec chmod g-w '{}' \; # 664->644; 775->755
20 }
22 genpkg_rules() {
23 copy @std
24 DEPENDS="python iptables"
25 TAGS="firewall"
26 }