wok view ipset/receipt @ rev 24615

updated goocanvas and goocanvas-dev (2.0.4 -> 3.0.0)
author Hans-G?nter Theisgen
date Mon Mar 07 07:34:10 2022 +0100 (2022-03-07)
parents 9f5504597c0b
children 5c32fbe35985
line source
1 # SliTaz package receipt.
3 PACKAGE="ipset"
4 VERSION="7.6"
5 CATEGORY="security"
6 SHORT_DESC="High speed match for an entry against a set of firewall rules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://ipset.netfilter.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="${WEB_SITE}$TARBALL"
14 DEPENDS="libmnl"
15 BUILD_DEPENDS="libltdl libmnl-dev linux-module-headers pkg-config"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - ${WGET_URL%/*}/install.html 2>/dev/null | \
21 sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 KVERSION=$(grep ^VERSION= $WOK/linux/receipt | cut -d '"' -f 2)-slitaz
28 sed -i "s/uname -r/echo $KVERSION/" \
29 configure
31 ./configure \
32 --prefix=/usr \
33 $CONFIGURE_ARGS &&
34 make -j 1 &&
35 make DESTDIR=$DESTDIR install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr/lib
43 cp -a $install/usr/lib/*.so* $fs/usr/lib
44 cp -a $install/usr/sbin $fs/usr
45 }