summaryrefslogtreecommitdiffstats
path: root/iptables/Pkgfile
blob: 7be06a3024cd231537a838308a495c36800a8512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
}