blob: 0db7c400e6ffec04aa06df3db932d17859c8c278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Neuros qt-plugins"
LICENSE = "GPL"
PV = "0.0+${PR}+gitr${SRCREV}"
PR = "r3"
DEPENDS = "qt-embedded"
inherit qt4e
SRCREV = "e00c2fe1c5be9f4bb94512363e1b21e07ba5c55d"
SRC_URI = "git://git.neurostechnology.com/git/lib-widgets;protocol=git"
S = "${WORKDIR}/git/"
do_install() {
install -d ${D}/${libdir}/
install -m 0755 ${S}/build/lib* ${D}/${libdir}
}
do_stage() {
install -d ${STAGING_LIBDIR}
install -m 0755 ${S}/build/lib* ${STAGING_LIBDIR}
}
|