mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 21:32:12 +02:00
Changelog: ========== * Fix regression with transfer free's after closing device * Fix regression with destroyed context if API is misused * Workaround for applications using missing default context * Fix hotplog enumeration regression * Fix Windows isochronous transfer regression since 1.0.24 * Fix macOS exit crash in some multi-context cases * Build fixes for various platforms and configurations * Fix Windows HID multi-interface product string retrieval * Update isochronous OUT packet actual lengths on Windows * Add interface bound checking for broken devices * Add umockdev tests on Linux (From OE-Core rev: 0c5828713ad1716d2032986f4156cfbc83a53674) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 7353489980600af07d0771654da6a8a3b0df7572) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
48 lines
1.6 KiB
BlitzBasic
48 lines
1.6 KiB
BlitzBasic
SUMMARY = "Userspace library to access USB (version 1.0)"
|
|
DESCRIPTION = "A cross-platform library to access USB devices from Linux, \
|
|
macOS, Windows, OpenBSD/NetBSD, Haiku and Solaris userspace."
|
|
HOMEPAGE = "https://libusb.info"
|
|
BUGTRACKER = "http://www.libusb.org/report"
|
|
SECTION = "libs"
|
|
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
SRC_URI = "https://github.com/libusb/libusb/releases/download/v${PV}/libusb-${PV}.tar.bz2 \
|
|
file://run-ptest \
|
|
"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/libusb/libusb/releases"
|
|
|
|
SRC_URI[sha256sum] = "12ce7a61fc9854d1d2a1ffe095f7b5fac19ddba095c259e6067a46500381b5a5"
|
|
|
|
S = "${WORKDIR}/libusb-${PV}"
|
|
|
|
inherit autotools pkgconfig ptest
|
|
|
|
PACKAGECONFIG:class-target ??= "udev"
|
|
PACKAGECONFIG[udev] = "--enable-udev,--disable-udev,udev"
|
|
|
|
EXTRA_OECONF = "--libdir=${base_libdir}"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${libdir}
|
|
if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then
|
|
mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
|
|
fi
|
|
}
|
|
|
|
do_compile_ptest() {
|
|
oe_runmake -C tests stress
|
|
}
|
|
|
|
do_install_ptest() {
|
|
install -m 755 ${B}/tests/.libs/stress ${D}${PTEST_PATH}
|
|
}
|
|
|
|
FILES:${PN} += "${base_libdir}/*.so.*"
|
|
|
|
FILES:${PN}-dev += "${base_libdir}/*.so ${base_libdir}/*.la"
|