blob: af9d574df7fac52f47a503acdd83b470407acf15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DEPENDS = "virtual/libc"
DESCRIPTION = "libusb is a library to provide userspace \
access to USB devices."
SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.gz \
file://${FILESDIR}/configure.patch;patch=1"
inherit autotools libtool
do_stage() {
oe_libinstall -a -so libusb ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/
for X in usb.h
do
install -m 0644 ${S}/$X ${STAGING_INCDIR}/$X
done
}
|