blob: 7d85914d7746ffa7f023565ab62876fd2f8081ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
LICENSE = "LGPL"
DESCRIPTION = "Gtk+ display migration library"
DEPENDS = "gtk+ libgcrypt"
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
SECTION = "gpe"
PRIORITY = "optional"
inherit pkgconfig gpe
headers = "displaymigration.h auth.h crypt.h"
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
}
|