mirror of
https://github.com/thead-yocto-mirror/meta-qt5
synced 2026-09-06 14:14:36 +02:00
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>
This commit is contained in:
committed by
Martin Jansa
parent
9f802b01e5
commit
164f9aa413
25
recipes-qt/examples/qt5everywheredemo_1.0.bb
Normal file
25
recipes-qt/examples/qt5everywheredemo_1.0.bb
Normal file
@@ -0,0 +1,25 @@
|
||||
SUMMARY = "Qt5 everywhere demo"
|
||||
DESCRIPTION = "Quick tour of Qt 5.0, primarily focusing on its graphical capabilities."
|
||||
HOMEPAGE = "https://qt.gitorious.org/qt-labs"
|
||||
LICENSE = "LGPLv2.1"
|
||||
LIC_FILES_CHKSUM = "file://main.cpp;md5=1187cb795a0f96bce64e63dd1a67dc2b"
|
||||
|
||||
DEPENDS = "qtdeclarative qtgraphicaleffects"
|
||||
|
||||
SRCREV = "9a868f96ee63c21ceda890d8dfc9d33f093d1b6d"
|
||||
SRC_URI = "git://gitorious.org/qt-labs/qt5-everywhere-demo.git"
|
||||
|
||||
S = "${WORKDIR}/git/QtDemo"
|
||||
|
||||
require recipes-qt/qt5/qt5.inc
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${datadir}/${P}
|
||||
install -m 0755 ${B}/QtDemo ${D}${datadir}/${P}
|
||||
cp -a ${S}/qml ${D}${datadir}/${P}
|
||||
}
|
||||
|
||||
FILES_${PN}-dbg += "${datadir}/${P}/.debug"
|
||||
FILES_${PN} += "${datadir}"
|
||||
|
||||
RDEPENDS_${PN} = "qtdeclarative-qmlplugins qtgraphicaleffects-qmlplugins"
|
||||
Reference in New Issue
Block a user