aboutsummaryrefslogtreecommitdiffstats
path: root/libusb/libusb_0.1.8.oe
blob: 20dbd2141e43d0d39289197df62f6a81d8302bdd (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
SECTION = "libs"
DESCRIPTION = "libusb is a library to provide userspace \
access to USB devices."
PR = "r3"

SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.gz \
	   file://configure.patch;patch=1 \
	   file://pkgconfig.patch;patch=1 \
	   file://amd64-fPIC.patch;patch=1;pnum=0"

inherit autotools pkgconfig

do_stage() {
	oe_libinstall -a -so libusb ${STAGING_LIBDIR}

        install -d ${STAGING_BINDIR}
	install -m 755 ${S}/libusb-config ${STAGING_BINDIR}
	perl -pi -e 's:\-L/usr/lib :-L${STAGING_LIBDIR} :' ${STAGING_BINDIR}/libusb-config

        install -d ${STAGING_INCDIR}/
        for X in usb.h
        do
                install -m 0644 ${S}/$X ${STAGING_INCDIR}/$X
        done
}