summaryrefslogtreecommitdiffstats
path: root/meta-agl-lxc/recipes-demo/refgui/refgui_git.bb
diff options
context:
space:
mode:
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2021-10-02 12:52:56 +0900
committerNaoto YAMAGUCHI <naoto.yamaguchi@aisin.co.jp>2021-10-26 15:45:29 +0000
commit311bba3702c2a4580fc7abcc650af0c365446dcf (patch)
treebcc956850ed9adeb2e0adf4fe74f1b13d1067500 /meta-agl-lxc/recipes-demo/refgui/refgui_git.bb
parented47409f52b66ef02de34916563de197955259b3 (diff)
Fix some issue for the cluster-refgui recipe
Cluster refgui upstreamd at SPEC-3942. But recipe was not changed. Current refgui recipe has some issue. * Referring to github repository now. * Not changed recipe name from refgui to cluster-refgui. * License description is old, that is already changed from MIT to Apach-2.0. This patch fix these issue. Bug-AGL: SPEC-4090 Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> Change-Id: I2742caf36ed50a2dbf41274d172a11be33708841
Diffstat (limited to 'meta-agl-lxc/recipes-demo/refgui/refgui_git.bb')
-rw-r--r--meta-agl-lxc/recipes-demo/refgui/refgui_git.bb45
1 files changed, 0 insertions, 45 deletions
diff --git a/meta-agl-lxc/recipes-demo/refgui/refgui_git.bb b/meta-agl-lxc/recipes-demo/refgui/refgui_git.bb
deleted file mode 100644
index 9d758dce..00000000
--- a/meta-agl-lxc/recipes-demo/refgui/refgui_git.bb
+++ /dev/null
@@ -1,45 +0,0 @@
-DESCRIPTION = "AGL Cluster Reference GUI"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=d2e73358b6893b535d5dfc7e89dc9d67"
-
-DEPENDS = " \
- qttools-native \
- qtmultimedia \
-"
-
-BRANCH = "main"
-SRC_URI = "git://github.com/agl-ic-eg/refgui;protocol=https;branch=${BRANCH} \
- file://cluster.service \
-"
-SRCREV = "e52dd81073154838e7f417e33debc8f6794fc683"
-
-S = "${WORKDIR}/git"
-
-inherit cmake cmake_qt5 systemd
-
-# 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/
-}
-
-FILES:${PN} += "${APP_DIR}/"
-
-RDEPENDS:${PN} = " \
- qtbase \
- qtdeclarative \
- qt3d \
- qtgraphicaleffects \
- qtmultimedia \
- qtquickcontrols \
- qtquickcontrols2 \
- qtwayland \
-"