diff options
Diffstat (limited to 'recipes-demo/webapp-samples/webapp-samples.inc')
-rw-r--r-- | recipes-demo/webapp-samples/webapp-samples.inc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes-demo/webapp-samples/webapp-samples.inc b/recipes-demo/webapp-samples/webapp-samples.inc new file mode 100644 index 000000000..f2d61a092 --- /dev/null +++ b/recipes-demo/webapp-samples/webapp-samples.inc @@ -0,0 +1,26 @@ +HOMEPAGE = "https://github.com/AGL-web-applications/webapp-samples" +SECTION = "apps" + +PV = "1.0+git${SRCPV}" +S = "${WORKDIR}/git" +B = "${WORKDIR}/build" + +SRC_URI = " \ + git://github.com/AGL-web-applications/webapp-samples.git;protocol=https;branch=master \ + file://${DESKTOP_FILE} \ +" +SRCREV = "b24a62cc524bdec98a61acc03fc53cbab24c1571" + +WAM_APPLICATIONS_DIR="${libdir}/wam_apps" +APPLICATIONS_DIR="${datadir}/applications" + +do_install() { + install -d ${D}${WAM_APPLICATIONS_DIR}/${PN} + install -d ${D}${APPLICATIONS_DIR} + install ${WORKDIR}/${DESKTOP_FILE} ${D}${APPLICATIONS_DIR} +} + +FILES:${PN} = " \ + ${WAM_APPLICATIONS_DIR}/${PN} \ + ${APPLICATIONS_DIR} \ +" |