summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/jsonrpc/jsonrpc_0.7.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/jsonrpc/jsonrpc_0.7.0.bb')
-rw-r--r--meta-oe/recipes-devtools/jsonrpc/jsonrpc_0.7.0.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/jsonrpc/jsonrpc_0.7.0.bb b/meta-oe/recipes-devtools/jsonrpc/jsonrpc_0.7.0.bb
new file mode 100644
index 0000000000..3a43f90ff5
--- /dev/null
+++ b/meta-oe/recipes-devtools/jsonrpc/jsonrpc_0.7.0.bb
@@ -0,0 +1,30 @@
1SUMMARY = "C++ framework for json-rpc 1.0 and 2.0"
2DESCRIPTION = "JsonRpc-Cpp is an OpenSource implementation of JSON-RPC \
3 protocol in C++. JSON-RPC is a lightweight remote procedure \
4 call protocol similar to XML-RPC."
5HOMEPAGE = "https://github.com/cinemast/libjson-rpc-cpp"
6
7LICENSE = "MIT"
8LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ee72d601854d5d2a065cf642883c489b"
9
10PV = "0.7.0+git${SRCPV}"
11
12SRC_URI = "git://github.com/cinemast/libjson-rpc-cpp \
13 file://0001-cmake-replace-hardcoded-lib-CMAKE_LIBRARY_PATH-with-.patch \
14 file://0001-filedescriptorclient-Typecast-min-arguments-correctl.patch \
15 file://0001-filedescriptorserver-Include-sys-select.h-before-oth.patch \
16"
17SRCREV = "ccbdb41388bdd929828941652da816bf52a0580e"
18
19SECTION = "libs"
20
21DEPENDS = "curl jsoncpp libmicrohttpd"
22
23S = "${WORKDIR}/git"
24
25inherit cmake
26
27EXTRA_OECMAKE += "-DCOMPILE_TESTS=NO -DCOMPILE_STUBGEN=NO -DCOMPILE_EXAMPLES=NO \
28 -DBUILD_SHARED_LIBS=YES -DBUILD_STATIC_LIBS=YES \
29 -DCMAKE_LIBRARY_PATH=${libdir} \
30"