blob: 033005d7ef730633f7a2203e30acf1a92ddb2915 (
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
|
LICENSE = "LGPL"
DESCRIPTION = "Gtk+ display migration library (dummy version)"
DEPENDS = "gtk+"
SECTION = "gpe"
PRIORITY = "optional"
PR = "r0"
inherit pkgconfig gpe
SRC_URI += "file://makefile-fix.patch;patch=1"
headers = "displaymigration.h auth.h crypt.h"
do_install() {
oe_runmake PREFIX=${prefix} DESTDIR=${D} install
oe_runmake PREFIX=${prefix} DESTDIR=${D} install-devel
}
do_stage () {
oe_libinstall -so libdisplaymigration ${STAGING_LIBDIR}
mkdir -p ${STAGING_INCDIR}/libdisplaymigration
for h in ${headers}; do
install -m 0644 ${S}/libdisplaymigration/$h ${STAGING_INCDIR}/libdisplaymigration/${h}
done
}
|