aboutsummaryrefslogtreecommitdiffstats
path: root/packages/libdisplaymigration/libdisplaymigration_0.28.bb
blob: e92cf57ce84eaa3b3a9a5727c96e8096064b61df (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
LICENSE = "LGPL"
DESCRIPTION = "Gtk+ display migration library"
DEPENDS = "gtk+ libgcrypt"
SECTION = "gpe"
PRIORITY = "optional"
PR = "r1"

inherit pkgconfig gpe

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
}