summaryrefslogtreecommitdiffstats
path: root/recipes-demo/flutter-cluster-dashboard/flutter-cluster-dashboard_git.bb
blob: 44be070ff9d452e71d6f97cde8704316d97e6639 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
SUMMARY = "Flutter Instrument Cluster "
DESCRIPTION = "An instrument cluster app written in dart for the flutter runtime"
AUTHOR = "Aakash Solanki"
HOMEPAGE = "https://github.com/aakash-s45/ic"

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 \
    file://flutter-cluster-dashboard.service \
    file://ic_on_bg-debug.json \
    file://ic_on_bg-profile.json \
    file://ic_on_bg-release.json \
"

PV = "1.0+git${SRCPV}"
SRCREV = "32f72bb68142a0dbde9ccf28b27c445598c95112"

S = "${WORKDIR}/git"

PUBSPEC_APPNAME = "ic"

FLUTTER_APPLICATION_INSTALL_PREFIX = "/flutter"

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"


do_install:append() {
    install -D -m 0644 ${WORKDIR}/flutter-cluster-dashboard.service ${D}${systemd_user_unitdir}/flutter-cluster-dashboard.service
    install -d ${D}${systemd_user_unitdir}/agl-session.target.wants
    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
}


FILES:${PN} += "${datadir} ${systemd_user_unitdir}"