aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/libusb/libusb-compat_0.1.0.bb
blob: 887765133a06b4c5c1cc2f1fb5ee905654e6656c (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
26
27
28
29
30
31
32
33
34
35
36
DESCRIPTION = "libusb is a library to provide userspace \
access to USB devices."
HOMEPAGE = "http://libusb.sf.net"
SECTION = "libs"
LICENSE = "LGPL"

PE = "1"
PR = "r0"

DEPENDS = "libusb1"

SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-compat-${PV}.tar.bz2 \
          "

inherit autotools pkgconfig binconfig lib_package

PARALLEL_MAKE = ""
EXTRA_OECONF = "--disable-build-docs"

export CXXFLAGS += "-lstdc++ -I${STAGING_INCDIR}"

do_stage() {
    autotools_stage_all
    install -m 755 ${S}/libusb-config ${STAGING_BINDIR}
    # can we get rid of that? wouldn't a sed statement do as well?
    sed -i 's:\-L${libdir} :-L${STAGING_LIBDIR} :' ${STAGING_BINDIR}/libusb-config

    if [ "${STAGING_BINDIR}" != "${STAGING_BINDIR_CROSS}" ]; then
            install -d ${STAGING_BINDIR_CROSS}/
        mv ${STAGING_BINDIR}/libusb-config ${STAGING_BINDIR_CROSS}/libusb-config
    fi
}

PACKAGES =+ "libusbpp"

FILES_libusbpp = "${libdir}/libusbpp*.so.*"