diff options
author | Loïc Collignon <loic.collignon@iot.bzh> | 2017-12-19 23:25:30 +0100 |
---|---|---|
committer | Stéphane Desneux <stephane.desneux@iot.bzh> | 2017-12-22 14:06:49 +0000 |
commit | ac407799fe7fbb392534c352f596ddc511b009e8 (patch) | |
tree | 2942df7a2613a6023008d337b62911513ad06598 /recipes-demo-hmi | |
parent | f4247f51038912c3ae78a6094922207cca192876 (diff) |
add recipes for identity, data persistence and nfc
Bug-AGL: SPEC-1187
Change-Id: Id251a7dcf7a37117a3e3a7314d57c062e02af6de
Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'recipes-demo-hmi')
3 files changed, 51 insertions, 0 deletions
diff --git a/recipes-demo-hmi/agl-service-data-persistence/agl-service-data-persistence_git.bb b/recipes-demo-hmi/agl-service-data-persistence/agl-service-data-persistence_git.bb new file mode 100644 index 000000000..69ebe7a22 --- /dev/null +++ b/recipes-demo-hmi/agl-service-data-persistence/agl-service-data-persistence_git.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "AGL low level user database binding" +HOMEPAGE = "https://github.com/iotbzh/agl-identity" +SECTION = "base" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://../LICENSE;md5=8089a3c40cff9caffd1b9ba5aa3dfd67" + +SRC_URI = "gitsm://gerrit.automotivelinux.org/gerrit/apps/agl-service-data-persistence;protocol=https;branch=${AGL_BRANCH}" +SRCREV = "${AGL_APP_REVISION}" + +inherit cmake aglwgt pkgconfig + +PV = "1.0+git${SRCPV}" +S = "${WORKDIR}/git/ll-database-binding" + +DEPENDS += " af-binder json-c gdbm " + diff --git a/recipes-demo-hmi/agl-service-identity-agent/agl-service-identity-agent_git.bb b/recipes-demo-hmi/agl-service-identity-agent/agl-service-identity-agent_git.bb new file mode 100644 index 000000000..5a4123164 --- /dev/null +++ b/recipes-demo-hmi/agl-service-identity-agent/agl-service-identity-agent_git.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "AGL identity agent binding" +HOMEPAGE = "https://gitlab.com/iotbzh/aia-binding" +SECTION = "base" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://../LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" + +SRC_URI = "gitsm://gerrit.automotivelinux.org/gerrit/apps/agl-service-identity-agent;protocol=https;branch=${AGL_BRANCH}" +SRCREV = "${AGL_APP_REVISION}" +PV = "1.0+git${SRCPV}" + +inherit cmake aglwgt pkgconfig + +S = "${WORKDIR}/git/agl-identity-service" + +DEPENDS = "curl af-binder json-c systemd" + diff --git a/recipes-demo-hmi/agl-service-nfc/agl-service-nfc_git.bb b/recipes-demo-hmi/agl-service-nfc/agl-service-nfc_git.bb new file mode 100644 index 000000000..2862da070 --- /dev/null +++ b/recipes-demo-hmi/agl-service-nfc/agl-service-nfc_git.bb @@ -0,0 +1,17 @@ +SUMMARY = "agl-service-nfc" +DESCRIPTION = "" +HOMEPAGE = "https://www.github.com/iotbzh/nfc-binding" +SECTION = "apps" +DEPENDS = "af-binder json-c libnfc" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" + +inherit cmake pkgconfig aglwgt + +SRC_URI = "gitsm://gerrit.automotivelinux.org/gerrit/apps/agl-service-nfc;protocol=https;branch=${AGL_BRANCH}" +SRCREV = "${AGL_APP_REVISION}" + +PV = "1.0+git${SRCPV}" +S = "${WORKDIR}/git" + |