blob: 6e7aa113241fac1b998957ff9ea867c3b6d13100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Gtk+ display migration library"
DEPENDS = "gtk+ libgcrypt"
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
SECTION = "gpe"
PRIORITY = "optional"
inherit pkgconfig gpe
SRC_URI = "http://gpe.handhelds.org/pub/projects/gpe/source/libdisplaymigration-${PV}.tar.gz"
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
}
|