blob: 290dcf1aca8f5b8421156b73f8ba02cdcc1da387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Library for controlling displaylink based usb devices"
LICENSE = "LGPLv2"
SRCREV = "d50f082699787c3c6531df431b35c9ad52a82667"
PV = "0.1.0"
PR_append = "+gitr${SRCREV}"
SRC_URI = "git://anongit.freedesktop.org/libdlo;protocol=git"
S = "${WORKDIR}/git"
inherit lib_package autotools_stage
AUTOTOOLS_STAGE_PKGCONFIG = "1"
do_configure_prepend() {
sed -i -e s:63:61: configure.ac
}
do_install_append() {
mv ${D}${bindir}/test1 ${D}${bindir}/libdlo-test1
}
|