blob: ab9d840cdcb0059a994b18002c00b1914084416b (
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 = "virtual/libc 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_soinstall libdisplaymigration.so.0 ${STAGING_LIBDIR}/
mkdir -p ${STAGING_INCDIR}/libdisplaymigration
for h in ${headers}; do
install -m 0644 ${S}/libdisplaymigration/$h ${STAGING_INCDIR}/libdisplaymigration/${h}
done
}
|