summaryrefslogtreecommitdiffstats
path: root/recipes-core/nss
diff options
context:
space:
mode:
authorduerpei <duep.fnst@fujitsu.com>2022-05-11 10:16:57 +0800
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2022-05-11 10:23:41 +0000
commit98326a92c016606d71fd48cb1738247f3a0b58b4 (patch)
tree61ad7c90704bb40f8f95c88b930c145be556f06d /recipes-core/nss
parent739cf79425c325a45468cdf5d0640c3c6328a81b (diff)
The links originally written in HOMEPAGE cannot be opened when copied to the browser. So I changed them into links that can be opened in the browser. Bug-AGL: SPEC-4368 Signed-off-by: duerpei <duep.fnst@fujitsu.com> Change-Id: I80590ad0761b2e32a8bd42dad35854648b08df10 (cherry picked from commit ff6679e85db6d0138f66238d26257e6318068f89)
Diffstat (limited to 'recipes-core/nss')
0 files changed, 0 insertions, 0 deletions
o */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
SUMMARY     = "AGL HTML5 media player Application"
HOMEPAGE    = "https://git.automotivelinux.org/apps/html5-mediaplayer/"
SECTION     = "apps"
LICENSE     = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"

PV      = "1.0+git${SRCPV}"
S       = "${WORKDIR}/git"
B       = "${WORKDIR}/build"

SRC_URI = " \
  git://gerrit.automotivelinux.org/gerrit/apps/html5-mediaplayer;protocol=https;branch=master \
"
SRCREV = "07adebd03e37a790462f80b6f3bb001bad7e6748"

inherit pythonnative agl-app

AGL_APP_TEMPLATE = "agl-app-web"
AGL_APP_ID = "webapps-mediaplayer"
AGL_APP_NAME = "HTML5 Media Player"

DEPENDS = "nodejs-native"

do_compile[network] = "1"
do_compile() {
  cd ${S}
  rm -rf package node_modules package-lock.json
  npm install
  npm run build
}

WAM_APPLICATIONS_DIR = "${libdir}/wam_apps"

do_install() {
  install -d ${D}${WAM_APPLICATIONS_DIR}/${PN}
  cp -R --no-dereference --preserve=mode,links ${S}/dist/* ${D}${WAM_APPLICATIONS_DIR}/${PN}
}

FILES:${PN} = "${WAM_APPLICATIONS_DIR}/${PN}"