blob: da3ed0560c98aea6a9b9c5cef0df7655a4f08d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = iptables network filtering tools
DEPENDS = virtual/libc
RDEPENDS = libc6
SRC_URI = http://www.netfilter.org/files/iptables-1.2.9.tar.bz2
S = "${WORKDIR}/iptables-1.2.9"
export COPT_FLAGS=${CFLAGS}
export KERNEL_DIR=${STAGING_INCDIR}
do_compile () {
unset CFLAGS
oe_runmake
}
do_install () {
oe_runmake PREFIX=${prefix} DESTDIR=${D} install
}
|