core/iptables/Pkgfile

26 lines
663 B
Plaintext

# Description: A Linux kernel packet filter control tool
# URL: http://www.iptables.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=iptables
version=1.8.0
release=1
source=(https://netfilter.org/projects/$name/files/$name-$version.tar.bz2)
build () {
cd $name-$version
# http://www.linuxfromscratch.org/blfs/view/svn/postlfs/iptables.html
sed -e '/libebt_/s/^/#/' \
-e '/libarpt_/s/^/#/' \
-i extensions/GNUmakefile.in
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--enable-libipq \
--disable-nftables
make
make DESTDIR=$PKG install
}