blob: a11d7c90bd9de785040e97b6416a08aeb8a0ef85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
inherit gpe
DESCRIPTION = "GPE owner information dialog"
SECTION = "gpe"
PRIORITY = "optional"
LICENSE = "GPL"
DEPENDS = "gtk+ libgpewidget"
do_compile_prepend() {
sed -i -e 's: -s : :g' Makefile
}
do_install_append () {
install -d ${D}${libdir}
install -d ${D}${includedir}
oe_libinstall -a libgpe-ownerinfo ${D}${libdir}
install -m 0644 gpe-ownerinfo.h ${D}${includedir}
}
|