############################################################################ ## ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## ## This file is part of the Boot to Qt meta layer. ## ## $QT_BEGIN_LICENSE:GPL$ ## Commercial License Usage ## Licensees holding valid commercial Qt licenses may use this file in ## accordance with the commercial license agreement provided with the ## Software or, alternatively, in accordance with the terms contained in ## a written agreement between you and The Qt Company. For licensing terms ## and conditions see https://www.qt.io/terms-conditions. For further ## information use the contact form at https://www.qt.io/contact-us. ## ## GNU General Public License Usage ## Alternatively, this file may be used under the terms of the GNU ## General Public License version 3 or (at your option) any later version ## approved by the KDE Free Qt Foundation. The licenses are as published by ## the Free Software Foundation and appearing in the file LICENSE.GPL3 ## included in the packaging of this file. Please review the following ## information to ensure the GNU General Public License requirements will ## be met: https://www.gnu.org/licenses/gpl-3.0.html. ## ## $QT_END_LICENSE$ ## ############################################################################ DESCRIPTION = "Boot to Qt Demos" LICENSE = "BSD | The-Qt-Company-Commercial" LIC_FILES_CHKSUM = "file://about-b2qt/AboutBoot2Qt.qml;md5=b0a1a6eef4a172b0a8cb4dad9a167d91;beginline=1;endline=49" inherit qmake5 QT_GIT_PROJECT="" SRC_URI = " \ ${QT_GIT}qt-apps/boot2qt-demos.git;branch=${BRANCH};name=demos \ https://s3-eu-west-1.amazonaws.com/qt-files/examples/Videos/Qt_video_720p.webm;name=video1 \ https://s3-eu-west-1.amazonaws.com/qt-files/examples/Videos/Qt+World+Summit+2015+Recap.mp4;name=video2 \ " PV = "5.11.2+git${SRCPV}" BRANCH = "5.11" SRCREV = "3594ea2a2dec8a74c2e8baf307c13671ebbdf18c" SRC_URI[video1.md5sum] = "56de4dcfd5201952dce9af9c69fcec9b" SRC_URI[video1.sha256sum] = "809123419acac99353439e52c870e2e497dfa8f434ef0777e6c7303e6ad27f89" SRC_URI[video2.md5sum] = "e03422de1dba27189872e7d579e7da1b" SRC_URI[video2.sha256sum] = "651e0b4d2b3272dc10bfc9edba4f0c1a7084cd087c75e8a098f7ba3454c7e485" S = "${WORKDIR}/git/basicsuite" DEPENDS = " \ qtbase qtdeclarative qtxmlpatterns qtquickcontrols2 qtgraphicaleffects qtmultimedia qtcharts qtlocation \ ${@bb.utils.contains('DISTRO_FEATURES', 'webengine', 'qtwebengine', '', d)} \ ${@bb.utils.contains('DISTRO_FEATURES', 'qt5-static', 'qtdeclarative-native', '', d)} \ " do_install_append() { # we only need plugins from the demos rm -rf ${D}/data/user/camera rm -rf ${D}/data/user/sensorexplorer rm -rf ${D}/data/user/qtwebbrowser # we need all qml and content files from the demos we want to use cp -r ${S}/datacollector ${D}/data/user/qt/ cp -r ${S}/ebike-ui ${D}/data/user/qt/ cp -r ${S}/enterprise-charts ${D}/data/user/qt/ cp -r ${S}/graphicaleffects ${D}/data/user/qt/ cp -r ${S}/launchersettings ${D}/data/user/qt/ cp -r ${S}/mediaplayer ${D}/data/user/qt/ cp -r ${S}/qtquickcontrols2 ${D}/data/user/qt/ cp -r ${S}/textinput ${D}/data/user/qt/ cp -r ${S}/shared ${D}/data/user/qt/ cp -r ${S}/qtwebbrowser ${D}/data/user/qt/ cp ${S}/demos.xml ${D}/data/user/qt/ # but none of the source files find ${D}/data/user/qt/ \( -name '*.cpp' -or -name '*.h' -or -name '*.pro' \) -delete rm -rf ${D}/data/user/qt/qtwebbrowser/tqtc-qtwebbrowser rm -rf ${D}/data/user/qt/qtwebbrowser/qmldir install -d -m 0755 ${D}/data/videos install -m 0644 ${WORKDIR}/Qt_video_720p.webm ${D}/data/videos install -m 0644 ${WORKDIR}/Qt+World+Summit+2015+Recap.mp4 ${D}/data/videos } FILES_${PN} += " \ /data/images/ \ /data/videos/ \ /data/user \ " FILES_${PN}-dbg += " \ /data/user/qt/qmlplugins/*/.debug/ \ " FILES_${PN}-staticdev += " \ /data/user/qt/qmlplugins/*/*.a \ "