diff options
author | Lisandro Pérez Meyer <lpmeyer@ics.com> | 2023-11-14 17:53:42 -0300 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-11-14 21:11:23 +0000 |
commit | a45b13ab6ba8008a461c70078ef885f7c29452a8 (patch) | |
tree | da461335d6c170704dbd795b658c8ea7fc452eac /recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb | |
parent | c7e7f3bdd38fb8af2d95b498c7f5778a5ecaa25b (diff) |
Add flutter-ics-homescreen recipe.
Bug-AGL: SPEC-4969
Change-Id: I5792df93372160e85d524dc81c3de8d2f523501e
Signed-off-by: Lisandro Pérez Meyer <lpmeyer@ics.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/29409
Reviewed-by: Scott Murray <scott.murray@konsulko.com>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb')
-rw-r--r-- | recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb b/recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb new file mode 100644 index 000000000..aa3e923ea --- /dev/null +++ b/recipes-demo/flutter-ics-homescreen/flutter-ics-homescreen_git.bb @@ -0,0 +1,46 @@ +SUMMARY = "AGL ICS Flutter Homescreen" +DESCRIPTION = "Demo Flutter homescreen for Automotive Grade Linux by ICS." +HOMEPAGE = "https://gerrit.automotivelinux.org/gerrit/apps/flutter-ics-homescreen" +SECTION = "graphics" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" + +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/flutter-ics-homescreen;protocol=https;branch=${AGL_BRANCH} \ + file://change_grpc_port.patch \ + file://flutter-ics-homescreen.json \ + file://flutter-ics-homescreen.service \ + file://ics-homescreen.yaml \ + file://ics-homescreen.token \ +" +SRCREV = "70ec8a79a121471a004e7e4c23157d10157e136f" + +S = "${WORKDIR}/git" + +PUBSPEC_APPNAME = "flutter_ics_homescreen" +FLUTTER_APPLICATION_INSTALL_PREFIX = "/flutter" + +FLUTTER_BUILD_ARGS = "bundle -v" + +inherit flutter-app systemd + +APP_CONFIG = "${BPN}.json" + +SYSTEMD_SERVICE:${PN} = "flutter-ics-homescreen.service" + +do_install:append() { + install -D -m 0644 ${WORKDIR}/${BPN}.service ${D}${systemd_system_unitdir}/${BPN}.service + + install -D -m 0644 ${WORKDIR}/${APP_CONFIG} ${D}${datadir}/flutter/${BPN}.json + + # VIS authorization token file for KUKSA.val should ideally not + # be readable by other users, but currently that's not doable + # until a packaging/sandboxing/MAC scheme is (re)implemented or + # something like OAuth is plumbed in as an alternative. + install -d ${D}${sysconfdir}/xdg/AGL/homescreen + install -m 0644 ${WORKDIR}/ics-homescreen.yaml ${D}${sysconfdir}/xdg/AGL/ + install -m 0644 ${WORKDIR}/ics-homescreen.token ${D}${sysconfdir}/xdg/AGL/homescreen/ +} + +FILES:${PN} += "${datadir} ${sysconfdir}/xdg/AGL" +RDEPENDS:${PN} += "flutter-auto agl-flutter-env" |