diff options
Diffstat (limited to 'community/ipset/PKGBUILD')
-rw-r--r-- | community/ipset/PKGBUILD | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/community/ipset/PKGBUILD b/community/ipset/PKGBUILD deleted file mode 100644 index a4d3cb929..000000000 --- a/community/ipset/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 90514 2013-05-12 23:45:55Z seblu $ -# Maintainer: Sébastien Luttringer - -pkgname=ipset -pkgver=6.19 -pkgrel=2 -pkgdesc='Administration tool for IP sets' -arch=('i686' 'x86_64') -url='http://ipset.netfilter.org' -license=('GPL2') -depends=('libmnl' 'bash') -backup=("etc/$pkgname.conf") -options=('!libtool') -source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2" - "$pkgname.service") -md5sums=('cabba1bd63a93f6e1c3db3fb22412b64' - '6be6a2b34c1f38fc8ad60828403e2077') - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no - make -} - -package() { - pushd $pkgname-$pkgver - make DESTDIR="$pkgdir" install - # install doc - install -dm755 "$pkgdir/usr/share/doc/$pkgname" - install -m644 README UPGRADE ChangeLog "$pkgdir/usr/share/doc/$pkgname" - # install pkgconfig file - install -Dm644 lib/libipset.pc "$pkgdir/usr/lib/pkgconfig/libipset.pc" - popd - # systemd - install -Dm 644 $pkgname.service \ - "$pkgdir/usr/lib/systemd/system/$pkgname.service" - # default config file - install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf" -} - -# vim:set ts=2 sw=2 et: |