diff options
Diffstat (limited to 'extra/ipset')
-rw-r--r-- | extra/ipset/PKGBUILD | 40 | ||||
-rw-r--r-- | extra/ipset/ipset.service | 13 |
2 files changed, 53 insertions, 0 deletions
diff --git a/extra/ipset/PKGBUILD b/extra/ipset/PKGBUILD new file mode 100644 index 000000000..8efe0fb53 --- /dev/null +++ b/extra/ipset/PKGBUILD @@ -0,0 +1,40 @@ +# $Id: PKGBUILD 217765 2014-07-23 22:38:00Z seblu $ +# Maintainer: Sébastien Luttringer + +pkgname=ipset +pkgver=6.21.1 +pkgrel=2 +pkgdesc='Administration tool for IP sets' +arch=('i686' 'x86_64') +url='http://ipset.netfilter.org' +license=('GPL2') +depends=('libmnl') +backup=("etc/$pkgname.conf") +source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2" + "$pkgname.service") +md5sums=('9c136fd51694eb0ef259cda085145da0' + '60ebe10f071314fc9e8647440a02467c') + +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: diff --git a/extra/ipset/ipset.service b/extra/ipset/ipset.service new file mode 100644 index 000000000..4318b056c --- /dev/null +++ b/extra/ipset/ipset.service @@ -0,0 +1,13 @@ +[Unit] +Description=Loading IP Sets +Before=iptables.service ip6tables.service + +[Service] +Type=oneshot +RemainAfterExit=yes +ExecStart=/usr/bin/ipset -f /etc/ipset.conf restore +ExecReload=/usr/bin/ipset -f /etc/ipset.conf restore +ExecStop=/usr/bin/ipset destroy + +[Install] +WantedBy=multi-user.target |