blob: c3a5a02a3f42b3a8cb1c8a9822429a3a93e763d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
DESCRIPTION = "C++ API for etcd's v3 client API"
HOMEPAGE = "https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=eae7da6a2cd1788a5cf8a9f838cf6450"
SRC_URI = " \
git://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3.git;branch=master;protocol=https \
file://0001-include-stdint.h-for-int64_t-types.patch \
file://0001-Replacing-GPR_ASSERT-with-c-assert.patch \
"
SRCREV = "ba6216385fc332b23d95683966824c2b86c2474e"
inherit cmake
DEPENDS += "grpc protobuf cpprest grpc-native protobuf-native"
EXTRA_OECONF += "-DCPPREST_EXCLUDE_WEBSOCKETS=ON"
do_install:append() {
sed -i -e 's#${RECIPE_SYSROOT}##g' ${D}${libdir}/cmake/etcd-cpp-api/etcd-targets.cmake
}
SOLIBS = ".so"
FILES_SOLIBSDEV = ""
SKIP_RECIPE[etcd-cpp-apiv3] ?= "needs ccpprest which needs websocket does work with boost >= 1.87"
|