diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2024-10-13 01:49:13 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-10-14 13:06:17 +0000 |
commit | 019af70097cbf29a7da014d43feb28800b28c5c2 (patch) | |
tree | 4302dd060e88d92dc245197c125a08bc502345a7 | |
parent | 070a56dca7b4eb9b29dbf6713158dd2966cbb275 (diff) |
Add weather sample app
Momiweather is sample world weather app for Momi IVI.
That enable more better demo.
Bug-AGL: SPEC-5162
Change-Id: I3e234a5c87322548f315297c45cfb49294cc8242
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
4 files changed, 70 insertions, 0 deletions
diff --git a/meta-agl-ic-container/recipes-demo/momiweather/momiweather/momiweather b/meta-agl-ic-container/recipes-demo/momiweather/momiweather/momiweather new file mode 100644 index 00000000..df403b5d --- /dev/null +++ b/meta-agl-ic-container/recipes-demo/momiweather/momiweather/momiweather @@ -0,0 +1,10 @@ +XDG_RUNTIME_DIR=/run/user/0 +QT_QPA_PLATFORM=wayland-egl +QT_WAYLAND_DISABLE_WINDOWDECORATION=1 +QT_IVI_SURFACE_ID=2012 +QT_WAYLAND_SHELL_INTEGRATION=ivi-shell +QT_QPA_PLATFORM_PLUGIN_PATH=/usr/lib/plugins/ +QT_QPA_FONTDIR=/usr/share/fonts/truetype +QML_IMPORT_PATH=/usr/lib/qml/ +QML2_IMPORT_PATH=/usr/lib/qml/ +HOME=/home/root diff --git a/meta-agl-ic-container/recipes-demo/momiweather/momiweather/momiweather.service b/meta-agl-ic-container/recipes-demo/momiweather/momiweather/momiweather.service new file mode 100644 index 00000000..45640cc8 --- /dev/null +++ b/meta-agl-ic-container/recipes-demo/momiweather/momiweather/momiweather.service @@ -0,0 +1,15 @@ +[Unit] +Description=momiweather +After=multi-user.target momiscreen.service +Requires=multi-user.target momiscreen.service + +[Service] +Type=simple +EnvironmentFile=/etc/default/momiweather +EnvironmentFile=-/etc/default/qtwayland-common +ExecStart=/usr/bin/momiweather +Restart=on-failure +RestartSec=1s + +[Install] +WantedBy=multi-user.target 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 \ + " diff --git a/meta-agl-ic-container/recipes-platform/images/guest-image-ivi-demo.bb b/meta-agl-ic-container/recipes-platform/images/guest-image-ivi-demo.bb index 56b362c0..f9dbabd6 100644 --- a/meta-agl-ic-container/recipes-platform/images/guest-image-ivi-demo.bb +++ b/meta-agl-ic-container/recipes-platform/images/guest-image-ivi-demo.bb @@ -9,6 +9,8 @@ IMAGE_INSTALL += " \ momiscreen \ mominavi \ momiplay \ + momiweather \ + chrony \ systemd-netif-config \ ttf-dejavu-sans \ ttf-dejavu-sans-mono \ |