From 1fa2f8ea1c14a4493482ffd692fb3fa39844d827 Mon Sep 17 00:00:00 2001 From: Author Leon Anavi Date: Mon, 16 Jan 2017 14:05:57 +0200 Subject: sota-client-cpp: GENIVI SOTA project in C++ Add Yocto/OE recipe for building GENIVI SOTA project written in C++ with Boost C++ libraries. Signed-off-by: Leon Anavi --- .../sota-client-cpp/sota-client-cpp_git.bb | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 recipes-sota/sota-client-cpp/sota-client-cpp_git.bb diff --git a/recipes-sota/sota-client-cpp/sota-client-cpp_git.bb b/recipes-sota/sota-client-cpp/sota-client-cpp_git.bb new file mode 100644 index 0000000..b3c841c --- /dev/null +++ b/recipes-sota/sota-client-cpp/sota-client-cpp_git.bb @@ -0,0 +1,29 @@ +SUMMARY = "SOTA Client" +DESCRIPTION = "SOTA Client application written in C++" +HOMEPAGE = "https://github.com/advancedtelematic/sota_client_cpp" +SECTION = "base" + +LICENSE = "MPL-2.0" +LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=9741c346eef56131163e13b9db1241b3" + +inherit cmake systemd + +S = "${WORKDIR}/git" + +SRCREV = "7194ec4aa39f71157af66751098340c854537817" + +SRC_URI = " \ + git://github.com/advancedtelematic/sota_client_cpp \ + " + +DEPENDS = "boost curl openssl" +RDEPENDS = "" + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${WORKDIR}/build/target/sota_client ${D}${bindir}/sota_client_cpp +} + +FILES_${PN} = " \ + ${bindir}/sota_client_cpp \ + " -- cgit v1.2.3-54-g00ecf