diff options
author | Neena Busireddy <neena.busireddy@freescale.com> | 2014-06-30 15:04:28 -0500 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-06 19:45:45 +0200 |
commit | 164f9aa413ce3dc93ebc5cfedecb366bcd984091 (patch) | |
tree | 0500854604feb7cb5233189913370a5374e45125 | |
parent | 9f802b01e54709773e0a070beefb78d8f9d5c01f (diff) | |
download | meta-qt5-164f9aa413ce3dc93ebc5cfedecb366bcd984091.tar.gz |
qt5everywheredemo: Create recipe to demonstrate qt5 example.
Qt5 Everywhere Demo provides a quick tour of Qt 5.0, primarily
focusing on its graphical capabilities.
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/qt5everywheredemo_1.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-qt/examples/qt5everywheredemo_1.0.bb b/recipes-qt/examples/qt5everywheredemo_1.0.bb new file mode 100644 index 00000000..4f7022c6 --- /dev/null +++ b/recipes-qt/examples/qt5everywheredemo_1.0.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Qt5 everywhere demo" | ||
2 | DESCRIPTION = "Quick tour of Qt 5.0, primarily focusing on its graphical capabilities." | ||
3 | HOMEPAGE = "https://qt.gitorious.org/qt-labs" | ||
4 | LICENSE = "LGPLv2.1" | ||
5 | LIC_FILES_CHKSUM = "file://main.cpp;md5=1187cb795a0f96bce64e63dd1a67dc2b" | ||
6 | |||
7 | DEPENDS = "qtdeclarative qtgraphicaleffects" | ||
8 | |||
9 | SRCREV = "9a868f96ee63c21ceda890d8dfc9d33f093d1b6d" | ||
10 | SRC_URI = "git://gitorious.org/qt-labs/qt5-everywhere-demo.git" | ||
11 | |||
12 | S = "${WORKDIR}/git/QtDemo" | ||
13 | |||
14 | require recipes-qt/qt5/qt5.inc | ||
15 | |||
16 | do_install() { | ||
17 | install -d ${D}${datadir}/${P} | ||
18 | install -m 0755 ${B}/QtDemo ${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" | ||