diff options
author | 2018-09-06 16:04:44 +0200 | |
---|---|---|
committer | 2018-10-05 15:21:27 +0200 | |
commit | e38d3328ce895dd4ea9ee4e5427ba2c172d28f1a (patch) | |
tree | 2bf922591afac980a0fa4fe5f14abec324d5eefa | |
parent | 24ca2ee061ee6f57c3a9e6238b3828f30238b6af (diff) |
meta-agl-profile-core: helpers/utilities recipessandbox/benierc/shared-library
add afb-helpers and ctl-utilities recipes
there were git submodules and are now shared libraries
- meta-agl-profile-core/recipes-support/afb-helpers/afb-helpers_git.bb
- meta-agl-profile-core/recipes-support/ctl-utilities/ctl-utilities_git.bb
Change-Id: I0b86e397974b8bc2204c0652fc165cc3b2b4a7b4
Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
-rw-r--r-- | meta-agl-profile-core/recipes-support/afb-helpers/afb-helpers_git.bb | 21 | ||||
-rw-r--r-- | meta-agl-profile-core/recipes-support/ctl-utilities/ctl-utilities_git.bb | 22 |
2 files changed, 43 insertions, 0 deletions
diff --git a/meta-agl-profile-core/recipes-support/afb-helpers/afb-helpers_git.bb b/meta-agl-profile-core/recipes-support/afb-helpers/afb-helpers_git.bb new file mode 100644 index 000000000..119d86c2d --- /dev/null +++ b/meta-agl-profile-core/recipes-support/afb-helpers/afb-helpers_git.bb @@ -0,0 +1,21 @@ +SUMMARY = "IIODEVICES Service Binding" +DESCRIPTION = "AGL IIODEVICES Service Binding" +HOMEPAGE = "https://gerrit.automotivelinux.org/gerrit/#/admin/projects/apps/afb-helpers" +SECTION = "apps" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" + +#SRC_URI = "gitsm://gerrit.automotivelinux.org/gerrit/apps/app-afb-helpers-submodule;protocol=https;branch=${AGL_BRANCH}" +#SRCREV = "${AGL_APP_REVISION}" +SRC_URI = "gitsm://gerrit.automotivelinux.org/gerrit/apps/app-afb-helpers-submodule;protocol=https;branch=sandbox/benierc/shared-library" +SRCREV = "${AUTOREV}" + +S = "${WORKDIR}/git" + +DEPENDS += "af-binder qtwebsockets" + +inherit cmake pkgconfig cmake_qt5 + +FILES_${PN} = "${libdir}/*" +FILES_${PN}-dev = "${includedir}/*" diff --git a/meta-agl-profile-core/recipes-support/ctl-utilities/ctl-utilities_git.bb b/meta-agl-profile-core/recipes-support/ctl-utilities/ctl-utilities_git.bb new file mode 100644 index 000000000..f5a7bd778 --- /dev/null +++ b/meta-agl-profile-core/recipes-support/ctl-utilities/ctl-utilities_git.bb @@ -0,0 +1,22 @@ +SUMMARY = "IIODEVICES Service Binding" +DESCRIPTION = "AGL IIODEVICES Service Binding" +HOMEPAGE = "https://gerrit.automotivelinux.org/gerrit/#/admin/projects/apps/afb-helpers" +SECTION = "apps" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" + +#SRC_URI = "gitsm://gerrit.automotivelinux.org/gerrit/apps/app-controller-submodule;protocol=https;branch=${AGL_BRANCH}" +#SRCREV = "${AGL_APP_REVISION}" +SRC_URI = "gitsm://gerrit.automotivelinux.org/gerrit/apps/app-controller-submodule;protocol=https;branch=sandbox/benierc/shared-library" +SRCREV = "${AUTOREV}" + +S = "${WORKDIR}/git" + +DEPENDS += "af-binder lua afb-helpers" +RDEPENDS_${PN} += "afb-helpers" + +inherit cmake pkgconfig + +FILES_${PN} = "${libdir}/*" +FILES_${PN}-dev = "${includedir}/*" |