diff options
Diffstat (limited to 'meta-oem-production-readiness/meta-agl-basesystem/recipes-support')
4 files changed, 93 insertions, 0 deletions
diff --git a/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/elfio/elfio_3.2.bb b/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/elfio/elfio_3.2.bb new file mode 100644 index 00000000..91020aec --- /dev/null +++ b/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/elfio/elfio_3.2.bb @@ -0,0 +1,12 @@ +SUMMARY = "C++ library for reading and generating ELF files" +DESCRIPTION = "ELFIO is a header-only C++ library intended for reading and generating files in the \ + ELF binary format. It is used as a standalone library - it is not dependent on any \ + other product or project. Adhering to ISO C++, it compiles on a wide variety of \ + architectures and compilers." +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://COPYING;md5=4f932e9ddd12264ae5e569aae5f08ed3" + +SRC_URI = "${SOURCEFORGE_MIRROR}/elfio/ELFIO-sources/ELFIO-${PV}/${BPN}-${PV}.tar.gz" +SRC_URI[md5sum] = "e1ddfc8d316fa6d03a04d8d1d6827663" + +inherit autotools diff --git a/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/os-vehicleparameterlibrary/os-vehicleparameterlibrary_1.0.0.bb b/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/os-vehicleparameterlibrary/os-vehicleparameterlibrary_1.0.0.bb new file mode 100644 index 00000000..2b7eb532 --- /dev/null +++ b/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/os-vehicleparameterlibrary/os-vehicleparameterlibrary_1.0.0.bb @@ -0,0 +1,22 @@ +SUMMARY = "os-vehicleparameterlibrary for AGL software" +DESCRIPTION = "os-vehicleparameterlibrary to build AGL software" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" + +DEPENDS += " ns-backupmanager" + +PV = "1.0.0+gitr${SRCPV}" +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/staging/basesystem.git;protocol=https;branch=${AGL_BRANCH}" +SRCREV := "${BASESYSTEM_REVISION}" + +S = "${WORKDIR}/git/service/other/vehicle_parameter_library" + +inherit agl-basesystem-common + +BSMAKE_FILE = "Makefile.client" + +FILES_${PN} += "${libdir}/*" + +RDEPENDS_${PN} += " \ + ns-backupmanager \ +" diff --git a/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/ss-interfaceunified/ss-interfaceunified_1.0.0.bb b/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/ss-interfaceunified/ss-interfaceunified_1.0.0.bb new file mode 100644 index 00000000..02c8ee41 --- /dev/null +++ b/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/ss-interfaceunified/ss-interfaceunified_1.0.0.bb @@ -0,0 +1,31 @@ +SUMMARY = "ss-interfaceunified for AGL software" +DESCRIPTION = "ss-interfaceunified to build AGL software" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" + +DEPENDS += " \ + ss-romaccesslibrary \ + ns-commonlibrary \ + ns-frameworkunified \ + elfio \ +" + +PV = "1.0.0+gitr${SRCPV}" +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/staging/basesystem.git;protocol=https;branch=${AGL_BRANCH}" +SRCREV := "${BASESYSTEM_REVISION}" + +S = "${WORKDIR}/git/service/system/interface_unified" + +inherit agl-basesystem-common + +BSMAKE_FILE = "Makefile.client" + +FILES_${PN} += "${libdir}/*" + +DIRFILES = "1" + +RDEPENDS_${PN} += " \ + ns-commonlibrary \ + ns-frameworkunified \ + ss-romaccesslibrary \ +" diff --git a/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/ss-versionlibrary/ss-versionlibrary_1.0.0.bb b/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/ss-versionlibrary/ss-versionlibrary_1.0.0.bb new file mode 100644 index 00000000..a0756ef2 --- /dev/null +++ b/meta-oem-production-readiness/meta-agl-basesystem/recipes-support/ss-versionlibrary/ss-versionlibrary_1.0.0.bb @@ -0,0 +1,28 @@ +SUMMARY = "ss-versionlibrary for AGL software" +DESCRIPTION = "ss-versionlibrary to build AGL software" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" + +DEPENDS += " \ + ns-frameworkunified \ + ss-interfaceunified \ + ss-romaccesslibrary \ +" + +PV = "1.0.0+gitr${SRCPV}" +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/staging/basesystem.git;protocol=https;branch=${AGL_BRANCH}" +SRCREV := "${BASESYSTEM_REVISION}" + +S = "${WORKDIR}/git/service/system/version_library" + +inherit agl-basesystem-common + +BSMAKE_FILE = "Makefile.client" + +FILES_${PN} += "${libdir}/*" + +RDEPENDS_${PN} += " \ + ns-frameworkunified \ + ss-interfaceunified \ + ss-romaccesslibrary \ +" |