core/iptables/Pkgfile

23 lines
456 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A Linux kernel packet filter control tool
# URL: https://www.iptables.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2022-01-09 05:01:45 +01:00
# Depends on: nftables
2006-02-23 16:26:10 +01:00
name=iptables
2022-05-14 09:39:46 +02:00
version=1.8.8
2021-01-17 12:29:55 +01:00
release=1
source=(https://www.netfilter.org/projects/$name/files/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
2018-08-09 11:30:08 +02:00
2022-05-14 09:39:46 +02:00
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
2022-01-09 05:01:45 +01:00
--enable-libipq \
--enable-nftables
make
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
}