summaryrefslogtreecommitdiff
path: root/libusb/libusb_0.1.7.oe
blob: 460bb07102d9d292efa833d6d46a66f4a86fc9af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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://configure.patch;patch=1"

inherit autotools

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 ::' ${STAGING_BINDIR}/libusb-config

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