summaryrefslogtreecommitdiffstats
path: root/iptables/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'iptables/Pkgfile')
-rw-r--r--iptables/Pkgfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/iptables/Pkgfile b/iptables/Pkgfile
new file mode 100644
index 0000000..7be06a3
--- /dev/null
+++ b/iptables/Pkgfile
@@ -0,0 +1,21 @@
+description="A Linux kernel packet filter control tool."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
+url="http://www.iptables.org/"
+depends=()
+
+name=iptables
+version=1.4.10
+release=1
+source=(ftp://ftp.netfilter.org/pub/iptables/iptables-1.4.10.tar.bz2)
+build ()
+{
+ cd $name-$version;
+ ./configure \
+ --prefix=$prefix \
+ --mandir=$mandir \
+ --libexecdir=$libdir \
+ --enable-libipq;
+ make;
+ make DESTDIR=$PKG install
+}