summaryrefslogtreecommitdiffstats
path: root/recipes-demo-hmi/navigation/ondemandnavi-config_1.0.bb
blob: 784341edc621b10e72dea7a9eba9b92737506a9f (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
SUMMARY     = "AGL Reference On Demand Navigation application config."
DESCRIPTION = "Config file for on-demand navigation app."
HOMEPAGE    = "https://github.com/YoshitoMomiyama/aglqtnavigation.git"
SECTION     = "apps"
LICENSE     = "Proprietary"

LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Proprietary;md5=0557f9d92cf58f2ccdd50f62f8ac0b28"

SRC_URI = "file://naviconfig.ini \
          "

S = "${WORKDIR}"

MAPBOX_ACCESS_TOKEN ?= "Please set mapbox access token"

do_install () {
    install -d ${D}${sysconfdir}
    install -m 644 ${WORKDIR}/naviconfig.ini ${D}${sysconfdir}
    sed -i -e 's/MAPBOX_ACCESS_TOKEN/${MAPBOX_ACCESS_TOKEN}/' ${D}${sysconfdir}/naviconfig.ini
}

PACKAGE_ARCH = "all"

PACKAGES = "${PN}"
FILES_${PN} = "/etc/naviconfig.ini"