diff options
Diffstat (limited to 'meta-agl-ic-container/recipes-demo/momiweather/momiweather_git.bb')
-rw-r--r-- | meta-agl-ic-container/recipes-demo/momiweather/momiweather_git.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta-agl-ic-container/recipes-demo/momiweather/momiweather_git.bb b/meta-agl-ic-container/recipes-demo/momiweather/momiweather_git.bb new file mode 100644 index 00000000..8f366f36 --- /dev/null +++ b/meta-agl-ic-container/recipes-demo/momiweather/momiweather_git.bb @@ -0,0 +1,43 @@ +SUMMARY = "Momiyama weather application example." +DESCRIPTION = "AGL sample weather application for container integration." +LICENSE = "GPL-3.0-only" +LIC_FILES_CHKSUM = "file://LICENSE;md5=d32239bcb673463ab874e80d47fae504" + +DEPENDS = " \ + qttools-native \ + qtbase \ + qtdeclarative \ + qtwayland \ + qtsvg \ + " + +PV = "1.0.0" + +SRC_URI = "git://github.com/AGLExport/momiweather.git;protocol=https;branch=main \ + file://momiweather.service \ + file://momiweather \ + " +SRCREV = "2f742360975c944c9c9190375ce828b2de185cfb" + +S = "${WORKDIR}/git" + +inherit cmake qt6-cmake systemd pkgconfig + +do_install:append() { + install -d ${D}/${systemd_unitdir}/system + install -m 0644 ${WORKDIR}/momiweather.service ${D}/${systemd_unitdir}/system + + install -m 0755 -d ${D}${sysconfdir}/default/ + install -m 0755 ${WORKDIR}/momiweather ${D}${sysconfdir}/default/ +} + +FILES:${PN} += " \ + ${systemd_unitdir} \ + ${sysconfdir}/*/* \ + " +SYSTEMD_PACKAGES = "${PN}" +SYSTEMD_SERVICE:${PN} = "momiweather.service" + +RDEPENDS:${PN} = " \ + qtsvg qtsvg-plugins qtsvg-qmlplugins \ + " |