blob: c93b67024269af6f562253184b9e90ccbdaab6f4 (
plain)
1 # Description: Administration tool for IP or port sets.
2 # URL: https://ipset.netfilter.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: iptables libmnl
5
6 name=ipset
7 version=7.15
8 release=1
9 source=(https://$name.netfilter.org/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 CONFIG_SHELL=/bin/bash \
15 ./configure --prefix=/usr
16
17 make
18 make DESTDIR=$PKG install
19 }
|