blob: cbe38e8fdedbf3d72a4e2473622a2bc87e6c19e2 (
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
|
require libpcap.inc
PR = "r6"
SRC_URI = "http://www.tcpdump.org/release/libpcap-${PV}.tar.gz"
SRC_URI += "file://aclocal.patch"
SRC_URI += "file://ieee80215-arphrd.patch"
SRC_URI += "file://ldflags.patch"
SRC_URI += "file://0001-Fix-some-problems-that-show-up-in-autoconf-2.64-and-.patch"
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
}
SRC_URI[md5sum] = "9ad1358c5dec48456405eac197a46d3d"
SRC_URI[sha256sum] = "a214c4e1d7e22a758f66fe1d08f0ce41c3ba801a4c13dd1188e1e38288ac73c0"
|