diff options
author | Neena Busireddy <neena.busireddy@freescale.com> | 2014-06-30 15:04:34 -0500 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-06 19:45:46 +0200 |
commit | 1d046542b60e2230989ba42479d6d1918b7a836d (patch) | |
tree | 0801c134deb437d27cecae1199d9be13e3d7ce0a | |
parent | 723530340e8c58ba4573e0f50fcb168ff39f857f (diff) | |
download | meta-qt5-1d046542b60e2230989ba42479d6d1918b7a836d.tar.gz |
quitindicators: Create recipe to demonstrate qt5 example.
This example shows the implementation of QUITIndicators components.
This recipe originated from the wandboard wiki page
http://wiki.wandboard.org/index.php/Integrate_Qt5_into_yocto_sato_image_on_Wandboard
Signed-off-by: Neena Busireddy <neena.busireddy@freescale.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/examples/quitindicators_1.0.1.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-qt/examples/quitindicators_1.0.1.bb b/recipes-qt/examples/quitindicators_1.0.1.bb new file mode 100644 index 00000000..19a861aa --- /dev/null +++ b/recipes-qt/examples/quitindicators_1.0.1.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "QUItIndicators components with few usage examples" | ||
2 | HOMEPAGE = "http://quitcoding.com/?page=work#cinex" | ||
3 | LICENSE = "CC-BY-3.0" | ||
4 | LIC_FILES_CHKSUM = "file://README;beginline=38;endline=45;md5=9a4a88358260db32391eda6ebe7562e5" | ||
5 | |||
6 | DEPENDS = "qtdeclarative qtgraphicaleffects" | ||
7 | |||
8 | SRC_URI = "http://quitcoding.com/download/QUItIndicators_1.0.1.tar.gz" | ||
9 | SRC_URI[md5sum] = "85ec60b553e181c55b331a9921d1b9a0" | ||
10 | SRC_URI[sha256sum] = "db84112adbde9b6f28c129e8fb37a6912f4bc34bed18e57f570fb78ea0cb6ae2" | ||
11 | |||
12 | S = "${WORKDIR}/QUItIndicators_1.0.1" | ||
13 | |||
14 | require recipes-qt/qt5/qt5.inc | ||
15 | |||
16 | do_install() { | ||
17 | install -d ${D}${datadir}/${P} | ||
18 | install -m 0755 ${B}/QUItIndicators ${D}${datadir}/${P} | ||
19 | cp -a ${S}/qml ${D}${datadir}/${P} | ||
20 | } | ||
21 | |||
22 | FILES_${PN}-dbg += "${datadir}/${P}/.debug" | ||
23 | FILES_${PN} += "${datadir}" | ||
24 | |||
25 | RDEPENDS_${PN} = "qtdeclarative-qmlplugins qtgraphicaleffects-qmlplugins" | ||