diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-04-24 09:05:06 +0000 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-04-24 09:05:06 +0000 |
commit | 8ad260216c663085fb5f6115da54600cec2565ac (patch) | |
tree | cf0703b3475998b2e688021751781d3490d465be /meta-agl-ic-container/recipes-demo/cluster-refgui/cluster-refgui_git.bbDISABLED | |
parent | 4f42a92e57aaed38a73864826fa4d0b0aca0ee35 (diff) |
WIP: Prepare for QT6sandbox/jsmoeller/qt6
Change-Id: I4d63976c68f03499df40cba4ebe39a5f85c64fcd
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-agl-ic-container/recipes-demo/cluster-refgui/cluster-refgui_git.bbDISABLED')
-rw-r--r-- | meta-agl-ic-container/recipes-demo/cluster-refgui/cluster-refgui_git.bbDISABLED | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta-agl-ic-container/recipes-demo/cluster-refgui/cluster-refgui_git.bbDISABLED b/meta-agl-ic-container/recipes-demo/cluster-refgui/cluster-refgui_git.bbDISABLED new file mode 100644 index 00000000..d7cb85f9 --- /dev/null +++ b/meta-agl-ic-container/recipes-demo/cluster-refgui/cluster-refgui_git.bbDISABLED @@ -0,0 +1,50 @@ +DESCRIPTION = "AGL Cluster Reference GUI" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=5335066555b14d832335aa4660d6c376" + +DEPENDS = " \ + qttools-native \ + qtmultimedia \ + cluster-service \ +" + +BRANCH = "master" +SRC_URI = "git://git.automotivelinux.org/src/cluster-refgui;protocol=https;branch=${BRANCH} \ + file://cluster.service \ + file://cluster \ +" +SRCREV = "cbb63f0e45340f6dd2cc9f360ed4da15c745186f" + +S = "${WORKDIR}/git" + +inherit cmake cmake_qt5 systemd pkgconfig + +# NOTE: +# The app currently assumes the mp4 video file is in the same +# directory, so changing this to ${bindir} to better match FHS +# requires code changes. +APP_DIR = "/opt/apps" +EXTRA_OECMAKE = "-DAPPS_INST_DIR=${APP_DIR}" + +SYSTEMD_SERVICE:${PN} = "cluster.service" + +do_install:append() { + install -d ${D}${systemd_unitdir}/system + install -m 0644 ${WORKDIR}/cluster.service ${D}${systemd_unitdir}/system/ + + install -m 0755 -d ${D}${sysconfdir}/default/ + install -m 0755 ${WORKDIR}/cluster ${D}${sysconfdir}/default/ +} + +FILES:${PN} += "${APP_DIR}/" + +RDEPENDS:${PN} = " \ + qtbase \ + qtdeclarative \ + qt3d \ + qtgraphicaleffects \ + qtmultimedia \ + qtquickcontrols \ + qtquickcontrols2 \ + qtwayland \ +" |