first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/iptables/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/iptables/changes.md Normal file
View File

@@ -0,0 +1,2 @@
# 1.8.9
First version

18
src/iptables/pkg.sh Normal file
View 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
}