From: Bocklage, Jens Date: Wed, 7 Dec 2016 14:32:08 +0000 (+0100) Subject: Apps now need to be compiled and packaged X-Git-Tag: 3.0.0~70 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=87534f65d456df59b4d0acaddc83a821c525d082;p=AGL%2Fmeta-agl-demo.git Apps now need to be compiled and packaged v8: (Tadao Tanikawa) Fix AGL style path of FILES Fix error when installing phone.wgt caused by typo v7: (Tadao Tanikawa) Fix install path where AGL style should be stored v6: (Scott Murray) Fix filenames of apps in script for installation v1-5: (Bocklage, Jens) Not only QML files anymore, but also cpp files that need to be compiled. Also packaged WGT files from the apps. Change-Id: Ib66a4dc7c8850d2116344b76a22719ee66693009 Signed-off-by: Bocklage, Jens Signed-off-by: Scott Murray Signed-off-by: Tadao Tanikawa --- diff --git a/recipes-demo-hmi/CES2017-demo/CES2017-demo.bb b/recipes-demo-hmi/CES2017-demo/CES2017-demo.bb index c94950bfe..543fa5e35 100644 --- a/recipes-demo-hmi/CES2017-demo/CES2017-demo.bb +++ b/recipes-demo-hmi/CES2017-demo/CES2017-demo.bb @@ -1,38 +1,204 @@ -SUMMARY = "Homescreen for the AGL Demonstrator @ CES2017" -DESCRIPTION = "Homescreen apps in QML format for the AGL Demonstrator @ CESS2017" +SUMMARY = "App Launcher for the AGL Demonstrator @ CES2017" +DESCRIPTION = "App Lanucher app in QML format for the AGL Demonstrator @ CESS2017" HOMEPAGE = "https://git.automotivelinux.org/gerrit/#/admin/projects/AGL/DemoApps/CES2017" - +LICENSE = "MPL-2.0" SECTION = "apps" +PV = "1.0+git" +S = "${WORKDIR}/git/" +PN = "ces2017-demo" -PN = "ces2017-demo" +inherit qmake5 +DEPENDS = " qtbase qtdeclarative qtquickcontrols2 qtmultimedia homescreen " -LICENSE = "MPL-2.0" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=815ca599c9df247a0c7f619bab123dad" SRC_URI = "git://gerrit.automotivelinux.org/gerrit/AGL/DemoApps/CES2017;protocol=http" SRCREV = "${AUTOREV}" -PV = "1.0+git" RDEPENDS_${PN} += " \ qtmultimedia-qmlplugins \ qtquickcontrols-qmlplugins \ + qtquickcontrols2-qmlplugins \ qtsvg-plugins \ " -# custom configure and install as these are just qml files +do_install_prepend() { + echo " \ + \ + Controls \ + \ + Controls app. \ + Qt \ + \ + Apache 2.0 \ + \ +" > ${B}/apps/Controls/config.xml + + cd ${B}/apps/Controls/ + zip controls.wgt config.xml controls + + + + echo " \ + \ + Dashboard \ + \ + Dashboard app. \ + Qt \ + \ + Apache 2.0 \ + \ +" > ${B}/apps/Dashboard/config.xml + + cd ${B}/apps/Dashboard/ + zip dashboard.wgt config.xml dashboard + + + + echo " \ + \ + Home \ + \ + Home app. \ + Qt \ + \ + Apache 2.0 \ + \ +" > ${B}/apps/Home/config.xml + + cd ${B}/apps/Home/ + zip home.wgt config.xml home + + + + echo " \ + \ + HVAC \ + \ + HVAC app. \ + Qt \ + \ + Apache 2.0 \ + \ +" > ${B}/apps/HVAC/config.xml + + cd ${B}/apps/HVAC/ + zip hvac.wgt config.xml hvac + + + + echo " \ + \ + MediaPlayer \ + \ + MediaPlayer app. \ + Qt \ + \ + Apache 2.0 \ + \ +" > ${B}/apps/MediaPlayer/config.xml + + cd ${B}/apps/MediaPlayer/ + zip mediaplayer.wgt config.xml mediaplayer -# we work in the git checkout ... -S = "${WORKDIR}/git" -do_configure() { - ls + + echo " \ + \ + Phone \ + \ + Phone app. \ + Qt \ + \ + Apache 2.0 \ + \ +" > ${B}/apps/Phone/config.xml + + cd ${B}/apps/Phone/ + zip phone.wgt config.xml phone + + + + echo " \ + \ + Radio \ + \ + Radio app. \ + Qt \ + \ + Apache 2.0 \ + \ +" > ${B}/apps/Radio/config.xml + + cd ${B}/apps/Radio/ + zip radio.wgt config.xml radio + + + + echo " \ + \ + Settings \ + \ + Settings app. \ + Qt \ + \ + Apache 2.0 \ + \ +" > ${B}/apps/Settings/config.xml + + cd ${B}/apps/Settings/ + zip settings.wgt config.xml settings + + + cat > ${B}/apps/installAllApps.sh <<-EOF + #!/bin/sh + /usr/bin/afm-util install controls.wgt + /usr/bin/afm-util install dashboard.wgt + /usr/bin/afm-util install home.wgt + /usr/bin/afm-util install hvac.wgt + /usr/bin/afm-util install mediaplayer.wgt + /usr/bin/afm-util install phone.wgt + /usr/bin/afm-util install radio.wgt + /usr/bin/afm-util install settings.wgt + EOF } -# plain copy in own folder for now do_install() { - mkdir -p ${D}/usr/AGL/CES2017/ - cp -rf ./* ${D}/usr/AGL/CES2017/ + install -d ${D}/usr/AGL/${PN} + install -m 0644 ${B}/apps/Controls/controls.wgt ${D}/usr/AGL/${PN}/ + install -m 0644 ${B}/apps/Dashboard/dashboard.wgt ${D}/usr/AGL/${PN}/ + install -m 0644 ${B}/apps/Home/home.wgt ${D}/usr/AGL/${PN}/ + install -m 0644 ${B}/apps/HVAC/hvac.wgt ${D}/usr/AGL/${PN}/ + install -m 0644 ${B}/apps/MediaPlayer/mediaplayer.wgt ${D}/usr/AGL/${PN}/ + install -m 0644 ${B}/apps/Phone/phone.wgt ${D}/usr/AGL/${PN}/ + install -m 0644 ${B}/apps/Radio/radio.wgt ${D}/usr/AGL/${PN}/ + install -m 0644 ${B}/apps/Settings/settings.wgt ${D}/usr/AGL/${PN}/ + + install -m 0755 ${B}/apps/installAllApps.sh ${D}/usr/AGL/${PN}/ + + install -d ${D}${libdir}/qt5/qml/AGL/Demo/Controls/ + install -m 0644 ${S}/imports/AGL/Demo/Controls/qmldir ${D}${libdir}/qt5/qml/AGL/Demo/Controls/ + install -m 0644 ${S}/imports/AGL/Demo/Controls/ImageButton.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/ + install -m 0644 ${S}/imports/AGL/Demo/Controls/ToggleButton.qml ${D}${libdir}/qt5/qml/AGL/Demo/Controls/ + + install -d ${D}${libdir}/qt5/qml/QtQuick/Controls.2/AGL + install -m 0644 ${S}/imports/qtquickcontrols2aglstyle/*.qml ${D}${libdir}/qt5/qml/QtQuick/Controls.2/AGL + + install -d ${D}${libdir}/qt5/qml/QtQuick/Controls.2/AGL/images/ + install -m 0644 ${S}/imports/qtquickcontrols2aglstyle/images/* ${D}${libdir}/qt5/qml/QtQuick/Controls.2/AGL/images/ } -FILES_${PN} = "/usr/AGL/" +# plain copy in own folder for now +#do_install() { +# mkdir -p ${D}/usr/AGL/CES2017/ +# cp -rf ./* ${D}/usr/AGL/CES2017/ +#} + +FILES_${PN} += "/usr/AGL/ \ + /usr/lib/qt5/qml/AGL/Demo/Controls/qmldir \ + /usr/lib/qt5/qml/AGL/Demo/Controls/ImageButton.qml \ + /usr/lib/qt5/qml/AGL/Demo/Controls/ToggleButton.qml \ + /usr/lib/qt5/qml/QtQuick/Controls.2/AGL \ + /usr/lib/qt5/qml/QtQuick/Controls.2/AGL/images \ + "