qt5ledscreen: Create recipe to demonstrate qt5 example.
authorNeena Busireddy <neena.busireddy@freescale.com>
Mon, 30 Jun 2014 20:04:30 +0000 (15:04 -0500)
committerPatrick Ohly <patrick.ohly@intel.com>
Fri, 9 Jan 2015 16:46:04 +0000 (08:46 -0800)
This is demonstration of simple LedScreen Component utilizing Qt5 QML.

This recipe originated from the wandboard wiki page
http://wiki.wandboard.org/index.php/Integrate_Qt5_into_yocto_sato_image_on_Wandboard

(From meta-qt5 rev: 74925c7347095aed7af484cf4e59e54cd9390b65)

Signed-off-by: Neena Busireddy <neena.busireddy@freescale.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
meta-qt5/recipes-qt/examples/qt5ledscreen_1.0.bb [new file with mode: 0644]

diff --git a/meta-qt5/recipes-qt/examples/qt5ledscreen_1.0.bb b/meta-qt5/recipes-qt/examples/qt5ledscreen_1.0.bb
new file mode 100644 (file)
index 0000000..e16c557
--- /dev/null
@@ -0,0 +1,24 @@
+SUMMARY = "QT5 LedScreen"
+DESCRIPTION = "This is LedScreen Qt5 QML component"
+HOMEPAGE = "http://quitcoding.com/?page=work#cinex"
+LICENSE = "CC-BY-3.0"
+LIC_FILES_CHKSUM = "file://README.txt;md5=fe07f4a0be40fe88f8c7ceaca63a28b5"
+
+DEPENDS = "qtdeclarative qtgraphicaleffects"
+
+SRC_URI = "http://quitcoding.com/download/ledscreen_1.0.tgz"
+SRC_URI[md5sum] = "8fc482d5a8b16f43f022c9a282f305b8"
+SRC_URI[sha256sum] = "fa4759b70a5fa148a901a3f9a659f7bd2503d73774022012bded880dffa0d15c"
+
+S = "${WORKDIR}/ledscreen_1.0"
+
+do_install() {
+    install -d ${D}${datadir}/${P}
+    #install -m 0755 ${B}/QUItBattery ${D}${datadir}/${P}  
+    cp -ar ${S}/* ${D}${datadir}/${P}  
+}
+
+FILES_${PN}-dbg += "${datadir}/${P}/.debug"
+FILES_${PN} += "${datadir}"
+
+RDEPENDS_${PN} = "qtdeclarative-qmlplugins qtgraphicaleffects-qmlplugins"