SUMMARY = "Userspace library to access USB (version 1.0)" HOMEPAGE = "http://libusb.sf.net" BUGTRACKER = "http://www.libusb.org/report" SECTION = "libs" LICENSE = "LGPLv2.1+" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" BBCLASSEXTEND = "native nativesdk" SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.bz2 \ " SRC_URI[md5sum] = "f9e2bb5879968467e5ca756cb4e1fa7e" SRC_URI[sha256sum] = "6c502c816002f90d4f76050a6429c3a7e0d84204222cbff2dce95dd773ba6840" S = "${WORKDIR}/libusb-${PV}" inherit autotools pkgconfig # Don't configure udev by default since it will cause a circular # dependecy with udev package, which depends on libusb EXTRA_OECONF = "--libdir=${base_libdir} --disable-udev" do_install_append() { install -d ${D}${libdir} if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then mv ${D}${base_libdir}/pkgconfig ${D}${libdir} fi } FILES_${PN} += "${base_libdir}/*.so.*" FILES_${PN}-dev += "${base_libdir}/*.so ${base_libdir}/*.la"