diff options
Diffstat (limited to 'community/ipset/PKGBUILD')
-rw-r--r-- | community/ipset/PKGBUILD | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/community/ipset/PKGBUILD b/community/ipset/PKGBUILD index a4d3cb929..8bc0b969f 100644 --- a/community/ipset/PKGBUILD +++ b/community/ipset/PKGBUILD @@ -1,21 +1,28 @@ -# $Id: PKGBUILD 90514 2013-05-12 23:45:55Z seblu $ +# $Id: PKGBUILD 98863 2013-10-20 19:57:37Z seblu $ # Maintainer: Sébastien Luttringer pkgname=ipset -pkgver=6.19 -pkgrel=2 +pkgver=6.20 +pkgrel=1 pkgdesc='Administration tool for IP sets' arch=('i686' 'x86_64') url='http://ipset.netfilter.org' license=('GPL2') -depends=('libmnl' 'bash') +depends=('libmnl') backup=("etc/$pkgname.conf") options=('!libtool') source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2" + '01-Fix-configure-failure-when-with-kmod.patch' "$pkgname.service") -md5sums=('cabba1bd63a93f6e1c3db3fb22412b64' +md5sums=('af28b3af356fff3e4a8e321ff7145678' + '5569fd4ee93acac4ae01d091002cc2f5' '6be6a2b34c1f38fc8ad60828403e2077') +prepare() { + patch -p1 -d $pkgname-$pkgver < 01-Fix-configure-failure-when-with-kmod.patch + cd $pkgname-$pkgver && ./autogen.sh +} + build() { cd $pkgname-$pkgver ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no |