blob: e011c723e27f05aba0179a570094074543401a81 (
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
}
|