core/iptables/Pkgfile

23 lines
467 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
2023-01-12 19:52:31 +01:00
version=1.8.9
2021-01-17 12:29:55 +01:00
release=1
2023-01-12 19:52:31 +01:00
source=(https://www.netfilter.org/projects/$name/files/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build () {
2023-08-21 21:49:13 +02:00
cd $name-$version
2018-08-09 11:30:08 +02:00
2023-08-21 21:49:13 +02:00
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
--enable-libipq \
--enable-nftables
2023-08-21 21:49:13 +02:00
make
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
}