X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=recipes-demo%2Fflutter-cluster-dashboard%2Fflutter-cluster-dashboard_git.bb;h=0c304ac77ad4f22e2a4e5b26664b8632e93aef9d;hb=refs%2Fchanges%2F06%2F28006%2F2;hp=44be070ff9d452e71d6f97cde8704316d97e6639;hpb=f8eb43810177a33d2fb414341e31caa0ae75bdfe;p=AGL%2Fmeta-agl-demo.git diff --git a/recipes-demo/flutter-cluster-dashboard/flutter-cluster-dashboard_git.bb b/recipes-demo/flutter-cluster-dashboard/flutter-cluster-dashboard_git.bb index 44be070ff..0c304ac77 100644 --- a/recipes-demo/flutter-cluster-dashboard/flutter-cluster-dashboard_git.bb +++ b/recipes-demo/flutter-cluster-dashboard/flutter-cluster-dashboard_git.bb @@ -8,28 +8,37 @@ SECTION = "graphics" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE.md;md5=0c52b0e4b5f0dbf57ea7d44bebb2e29d" -SRC_URI = "git://github.com/aakash-s45/ic;protocol=https;branch=main \ +SRC_URI = "git://github.com/aakash-s45/ic;protocol=https;branch=master \ file://flutter-cluster-dashboard.service \ - file://ic_on_bg-debug.json \ - file://ic_on_bg-profile.json \ - file://ic_on_bg-release.json \ + file://flutter_cluster_dashboard_on_bg-debug.json \ + file://flutter_cluster_dashboard_on_bg-profile.json \ + file://flutter_cluster_dashboard_on_bg-release.json \ + file://flutter-cluster-dashboard.yaml \ " PV = "1.0+git${SRCPV}" -SRCREV = "32f72bb68142a0dbde9ccf28b27c445598c95112" +SRCREV = "e7099bd763ba5612d0613b9ee43679cb2a9f7610" S = "${WORKDIR}/git" -PUBSPEC_APPNAME = "ic" +PUBSPEC_APPNAME = "flutter_cluster_dashboard" FLUTTER_APPLICATION_INSTALL_PREFIX = "/flutter" +OPENROUTE_API_KEY ??= "YOU_NEED_TO_SET_IT_IN_LOCAL_CONF" + inherit flutter-app -APP_CONFIG = "ic_on_bg-release.json" -APP_CONFIG:class-runtimedebug = "ic_on_bg-debug.json" -APP_CONFIG:class-runtimeprofile = "ic_on_bg-profile.json" +APP_CONFIG = "flutter_cluster_dashboard_on_bg-release.json" +APP_CONFIG:class-runtimedebug = "flutter_cluster_dashboard_on_bg-debug.json" +APP_CONFIG:class-runtimeprofile = "flutter_cluster_dashboard_on_bg-profile.json" + +do_configure:prepend() { + if [ "${OPENROUTE_API_KEY}" = "YOU_NEED_TO_SET_IT_IN_LOCAL_CONF" ]; then + bbwarn "WARNING: You should set openrouteservice API key to OPENROUTE_API_KEY variable in local.conf." + fi +} do_install:append() { install -D -m 0644 ${WORKDIR}/flutter-cluster-dashboard.service ${D}${systemd_user_unitdir}/flutter-cluster-dashboard.service @@ -37,7 +46,13 @@ do_install:append() { ln -s ../flutter-cluster-dashboard.service ${D}${systemd_user_unitdir}/agl-session.target.wants/flutter-cluster-dashboard.service install -D -m 0644 ${WORKDIR}/${APP_CONFIG} ${D}${datadir}/flutter/default.json + + install -d ${D}${sysconfdir}/xdg/AGL + install -m 0644 ${WORKDIR}/flutter-cluster-dashboard.yaml ${D}${sysconfdir}/xdg/AGL/ + + install -m 0755 -d ${D}${sysconfdir}/default/ + echo 'OPENROUTE_API_KEY:${OPENROUTE_API_KEY}' >> ${D}${sysconfdir}/default/openroutekey } -FILES:${PN} += "${datadir} ${systemd_user_unitdir}" +FILES:${PN} += "${datadir} ${systemd_user_unitdir} ${sysconfdir}/xdg/AGL ${sysconfdir}/default/"