blob: 4a1f374b38a4b686c98160b46a7b9df0b3a0eef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
require libpcap.inc
PR = "r1"
SRC_URI = "http://www.tcpdump.org/release/libpcap-${PV}.tar.gz"
SRC_URI += "file://ieee80215-arphrd.patch"
BINCONFIG_GLOB = "pcap-config"
inherit binconfig
do_configure_prepend() {
cat ${S}/aclocal.m4 >>${S}/acinclude.m4
}
do_compile () {
oe_runmake
rm -f *.o
oe_runmake shared
}
do_install () {
install -d ${D}${libdir}
install -d ${D}${bindir}
oe_runmake install DESTDIR=${D}
oe_runmake install-shared DESTDIR=${D}
oe_libinstall -a -so libpcap ${D}${libdir}
install -d ${D}${includedir}/pcap
install -m 0644 pcap/pcap.h ${D}${includedir}/pcap/pcap.h
install -m 0644 pcap/namedb.h ${D}${includedir}/pcap/namedb.h
install -m 0644 pcap/bpf.h ${D}${includedir}/pcap/bpf.h
install -m 0755 ${S}/pcap-config ${D}${bindir}
}
FILES_${PN}-dev += "${bindir}/pcap-config"
SRC_URI[md5sum] = "1bca27d206970badae248cfa471bbb47"
SRC_URI[sha256sum] = "508cca15547e55d1318498b838456a21770c450beb2dc7d7d4a96d90816e5a85"
|