From 5b80bfd7bffd4c20d80b7c70a7130529e9a755dd Mon Sep 17 00:00:00 2001 From: ToshikazuOhiwa Date: Mon, 30 Mar 2020 09:24:26 +0900 Subject: agl-basesystem --- .../sdl-generic-hmi/sdl-generic-hmi_git.bb | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 external/meta-sdl/recipes-automotive/sdl-generic-hmi/sdl-generic-hmi_git.bb (limited to 'external/meta-sdl/recipes-automotive/sdl-generic-hmi/sdl-generic-hmi_git.bb') diff --git a/external/meta-sdl/recipes-automotive/sdl-generic-hmi/sdl-generic-hmi_git.bb b/external/meta-sdl/recipes-automotive/sdl-generic-hmi/sdl-generic-hmi_git.bb new file mode 100644 index 00000000..bac1740e --- /dev/null +++ b/external/meta-sdl/recipes-automotive/sdl-generic-hmi/sdl-generic-hmi_git.bb @@ -0,0 +1,34 @@ +SUMMARY = "HTML based reference HMI for SmartDeviceLink" +DESCRIPTION = "SmartDeviceLink (SDL) is a standard set of protocols and \ +messages that connect applications on a smartphone to a vehicle head \ +unit." +HOMEPAGE = "https://www.smartdevicelink.com" +SECTION = "app" + +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=cf455e8d39d2ded1d85b1c5dea6ec3c5" + +SRC_URI = "git://github.com/smartdevicelink/generic_hmi.git;branch=develop" + +PV = "0.0.0+git${SRCPV}" +SRCREV = "8d05d53d228d1dec82b78af824e33a0de5697e0c" + +S = "${WORKDIR}/git" + +PACKAGES = " \ + ${PN} \ +" + +FILES_${PN}_append = " \ + ${datadir}/smartdevicelink/generic_hmi/ \ +" + +do_install() { + install -d ${D}${datadir}/smartdevicelink/generic_hmi + install -m 0644 ${S}/index.html ${D}${datadir}/smartdevicelink/generic_hmi/ + install -d ${D}${datadir}/smartdevicelink/generic_hmi/build + install -m 0644 ${S}/build/* ${D}${datadir}/smartdevicelink/generic_hmi/build + install -d ${D}${datadir}/smartdevicelink/generic_hmi/fonts + install -m 0644 ${S}/fonts/* ${D}${datadir}/smartdevicelink/generic_hmi/fonts +} + -- cgit 1.2.3-korg