CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
perl: updated release number
[ports/core-arm.git] / iptables / Pkgfile
1 # Description: A Linux kernel packet filter control tool
2 # URL: http://www.iptables.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5
6 name=iptables
7 version=1.4.17
8 release=1
9 source=(ftp://ftp.netfilter.org/pub/iptables/$name-$version.tar.bz2)
10
11 build () {
12 cd $name-$version
13
14 # Fix "cannot find -lip6tc" FS#57
15 export LDFLAGS="-L$PWD/libiptc/.libs"
16
17 ./configure --prefix=/usr \
18 --mandir=/usr/man \
19 --libexecdir=/usr/lib \
20 --enable-libipq
21 make
22 make DESTDIR=$PKG install
23 }