summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Behrens <holger.behrens@windriver.com>2015-02-05 18:01:22 +0100
committerHolger Behrens <holger.behrens@windriver.com>2015-02-05 18:01:22 +0100
commit9567fce5c26b44159770af178dde986121ddeb1e (patch)
tree8a0514adfcca65d970bb1341a931da3bc16d94c7
parent2d108be26dd2361451b7b936398dfc537764b2e3 (diff)
downloadgenivi-demo-platform-hmi-9567fce5c26b44159770af178dde986121ddeb1e.tar.gz
recipe: provide example recipe for use with meta-ivi
Signed-off-by: Holger Behrens <holger.behrens@windriver.com>
-rw-r--r--genivi-demo-platform-hmi.bb39
1 files changed, 39 insertions, 0 deletions
diff --git a/genivi-demo-platform-hmi.bb b/genivi-demo-platform-hmi.bb
new file mode 100644
index 0000000..979e2bc
--- /dev/null
+++ b/genivi-demo-platform-hmi.bb
@@ -0,0 +1,39 @@
+# Copyright (C) 2015 GENIVI Alliance
+# Released under the MIT license (see COPYING.MIT for the terms)
+
+SUMMARY = "Simple HMI for the GENIVI Demo Platform (GDP)"
+HOMEPAGE = "http://projects.genivi.org/genivi-demo-platform/"
+LICENSE = "MPL-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=815ca599c9df247a0c7f619bab123dad"
+
+DEPENDS = "wayland-ivi-extension weston"
+
+# SRC_URI = "git://git.projects.genivi.org/genivi-demo-platform-hmi.git"
+# SRCREV = ""
+# S = "${WORKDIR}/git"
+
+inherit autotools pkgconfig
+inherit externalsrc
+EXTERNALSRC = "/home/holger/Projects/GDP/stash.wrs.com/genivi-demo-platform-hmi"
+
+# make sure this matches the version given in configure.ac
+PV = "0.2"
+
+# by default the plugin should end up as:
+# /usr/lib/weston/genivi-demo-platform-hmi.so
+# to load this plugin you need to add this (.so) to your weston.ini ivi-module
+FILES_${PN} += "\
+ ${datadir}/weston/* \
+ ${libdir}/weston/genivi-demo-platform-hmi.so \
+ "
+FILES_${PN}-dev += "\
+ ${libdir}/weston/genivi-demo-platform-hmi.la \
+ "
+FILES_${PN}-dbg += "\
+ ${libdir}/weston/.debug/* \
+ "
+
+do_install_append() {
+ install -d ${D}${datadir}/weston
+ install -m 0444 ${S}/assets/GDP_Panel.png ${D}${datadir}/weston/GDP_Panel.png
+}