CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Merged changes from noeabi (72cbd18e791bd2edff0e8d23873136187f0cd936)
[crossrootfs.git] / iptables / Pkgfile
CommitLineData
6dca1d21
JB
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
83e7e2d0 4# Arch Maintainer: CRUX-ARM System Team, devel@crux-arm.nu
f6c60333 5# Depends on:
6dca1d21
JB
6
7name=iptables
f6c60333 8version=1.4.5
6dca1d21
JB
9release=1
10source=(ftp://ftp.netfilter.org/pub/iptables/$name-$version.tar.bz2)
11
12build () {
13 cd $name-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --mandir=/usr/man \
19 --libexecdir=/usr/lib \
20 --enable-libipq
21
22 make
23 make DESTDIR=$PKG install
24}