first commit
This commit is contained in:
3
src/iptables/.gitignore
vendored
Normal file
3
src/iptables/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/iptables/changes.md
Normal file
2
src/iptables/changes.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# 1.8.9
|
||||
First version
|
18
src/iptables/pkg.sh
Normal file
18
src/iptables/pkg.sh
Normal file
@@ -0,0 +1,18 @@
|
||||
NAME="iptables"
|
||||
DESC="Userspace command line program used to configure the Linux 2.4 and later kernel packet filtering ruleset"
|
||||
VERSION="1.8.9"
|
||||
FILES=("https://www.netfilter.org/projects/iptables/files/iptables-$VERSION.tar.xz")
|
||||
HASHES=("ffa00f68d63e723c21b8a091c5c0271b")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--disable-nftables \
|
||||
--enable-libipq
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user