blob: dda82a8ee6b5d4544b2e0dd9e897ff0858ceb77a (
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
|
DESCRIPTION = "Gtk+ display migration library"
DEPENDS = "virtual/libc gtk+ libgcrypt"
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
SECTION = "gpe"
PRIORITY = "optional"
inherit pkgconfig
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
}
do_install() {
oe_runmake "DESTDIR=${D}" install
}
|