mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 15:57:04 +00:00
3d08b9f2c6
Signed-off-by: Saul Wold <sgw@linux.intel.com>
21 lines
526 B
BlitzBasic
21 lines
526 B
BlitzBasic
require libpcap.inc
|
|
|
|
PR = "r0"
|
|
|
|
SRC_URI += "file://aclocal.patch \
|
|
file://ieee80215-arphrd.patch"
|
|
|
|
SRC_URI[md5sum] = "1bca27d206970badae248cfa471bbb47"
|
|
SRC_URI[sha256sum] = "508cca15547e55d1318498b838456a21770c450beb2dc7d7d4a96d90816e5a85"
|
|
|
|
#
|
|
# make install doesn't cover the shared lib
|
|
# make install-shared is just broken (no symlinks)
|
|
#
|
|
do_install_prepend () {
|
|
install -d ${D}${libdir}
|
|
install -d ${D}${bindir}
|
|
oe_runmake install-shared DESTDIR=${D}
|
|
oe_libinstall -a -so libpcap ${D}${libdir}
|
|
}
|