Openembedded Devel Discussions
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [PATCH 01/21] cinematicexperience: add example
Date: Thu, 10 Oct 2013 12:44:56 +0200	[thread overview]
Message-ID: <20131010104456.GI2872@jama> (raw)
In-Reply-To: <1381221981-1585-1-git-send-email-eric@eukrea.com>

[-- Attachment #1: Type: text/plain, Size: 3125 bytes --]

On Tue, Oct 08, 2013 at 10:46:01AM +0200, Eric Bénard wrote:
> for more informations on this demo :
> http://kgronholm.blogspot.fr/2012/08/qt5-cinematic-experience.html
> http://quitcoding.com/?page=work#cinex

All merged in master as well as dora, thanks!

> 
> Signed-off-by: Eric Bénard <eric@eukrea.com>
> ---
>  recipes-qt/examples/cinematicexperience_1.0.bb | 40 ++++++++++++++++++++++++++
>  1 file changed, 40 insertions(+)
>  create mode 100644 recipes-qt/examples/cinematicexperience_1.0.bb
> 
> diff --git a/recipes-qt/examples/cinematicexperience_1.0.bb b/recipes-qt/examples/cinematicexperience_1.0.bb
> new file mode 100644
> index 0000000..3fa6f06
> --- /dev/null
> +++ b/recipes-qt/examples/cinematicexperience_1.0.bb
> @@ -0,0 +1,40 @@
> +SUMMARY = "Qt5 technology demo"
> +DESCRIPTION = "Cinematic Experience collects many of the new Qt5 QtQuick 2.0 features into the same UX demo application. It uses particles, sprites, path animation, custom shaders etc. features which Qt5 introduces for QML UIs."
> +HOMEPAGE = "http://quitcoding.com/?page=work#cinex"
> +LICENSE = "CC-BY-3.0"
> +LIC_FILES_CHKSUM = "file://README;beginline=38;endline=50;md5=51babd597624b70752069953876aaa18"
> +
> +SRC_URI = "http://quitcoding.com/download/Qt5_CinematicExperience_rpi_1.0.tgz"
> +
> +SRC_URI[md5sum] = "935a5db0a6b2a72c67236e72f52be7d1"
> +SRC_URI[sha256sum] = "0dd602983ced5f7c0cfd5ad0fbfe2b0b7e3c9ff715e4ef23eef818ccc2b6c60b"
> +
> +S = "${WORKDIR}/Qt5_CinematicExperience_rpi_${PV}/"
> +
> +# other version available for small screens
> +#SRC_URI = "http://quitcoding.com/download/Qt5_CinematicExperience_1.0.tgz"
> +#SRC_URI[md5sum] = "1c4f9bf5411c985fc5d3dbfc5d826a29"
> +#SRC_URI[sha256sum] = "0e547e0259667915a24e84ade5efdcd0c553f81786734452c2c8dbce19a19f44"
> +#S = "${WORKDIR}/Qt5_CinematicExperience_${PV}/"
> +
> +DEPENDS = "qtdeclarative qtgraphicaleffects"
> +RDEPENDS_${PN} = "qtdeclarative-qmlplugins qtgraphicaleffects-qmlplugins"
> +
> +require recipes-qt/qt5/qt5.inc
> +
> +do_install() {
> +    install -d ${D}${datadir}/${P}
> +    install -m 0755 ${B}/Qt5_CinematicExperience ${D}${datadir}/${P}
> +    cp -a ${S}/content ${D}${datadir}/${P}
> +    install -m 0644 ${S}/Qt5_CinematicExperience.qml ${D}${datadir}/${P}
> +
> +    install -d ${D}${bindir}
> +    echo "#!/bin/sh" > ${D}${bindir}/Qt5_CinematicExperience
> +    echo "export QML_IMPORT_PATH=${datadir}/${P}" >> ${D}${bindir}/Qt5_CinematicExperience
> +    echo "export QML2_IMPORT_PATH=${datadir}/${P}" >> ${D}${bindir}/Qt5_CinematicExperience
> +    echo "${datadir}/${P}/Qt5_CinematicExperiencea \$* " >> ${D}${bindir}/Qt5_CinematicExperience
> +    chmod +x ${D}${bindir}/Qt5_CinematicExperience
> +}
> +
> +FILES_${PN}-dbg += "${datadir}/${P}/.debug"
> +FILES_${PN} += "${datadir}"
> -- 
> 1.8.4.rc3
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

      parent reply	other threads:[~2013-10-10 10:44 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-08  8:46 [PATCH 01/21] cinematicexperience: add example Eric Bénard
2013-10-08  8:46 ` [PATCH 02/21] qtbase: update to 5.1.1 Eric Bénard
2013-10-08  8:46 ` [PATCH 03/21] qtjsbackend: " Eric Bénard
2013-10-08  8:46 ` [PATCH 04/21] qtsvg: " Eric Bénard
2013-10-08  8:46 ` [PATCH 05/21] qtxmlpatterns: " Eric Bénard
2013-10-08  8:46 ` [PATCH 06/21] qtdeclarative: " Eric Bénard
2013-10-08  8:46 ` [PATCH 07/21] qtgraphicaleffects: " Eric Bénard
2013-10-08  8:46 ` [PATCH 08/21] qtimageformats: " Eric Bénard
2013-10-08  8:46 ` [PATCH 09/21] qtmultimedia: " Eric Bénard
2013-10-08  8:46 ` [PATCH 10/21] qtscript: " Eric Bénard
2013-10-08  8:46 ` [PATCH 11/21] qtsensors: " Eric Bénard
2013-10-08  8:46 ` [PATCH 12/21] qtsystems: doesn't depends on qtjsondb Eric Bénard
2013-10-08  8:46 ` [PATCH 13/21] qtquick1: update to 5.1.1 Eric Bénard
2013-10-08  8:49 ` [PATCH 01/21] cinematicexperience: add example Eric Bénard
2013-10-10 10:44 ` Martin Jansa [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20131010104456.GI2872@jama \
    --to=martin.jansa@gmail.com \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox