summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@cn.fujitsu.com>2020-03-03 03:51:58 -0800
committerKhem Raj <raj.khem@gmail.com>2020-03-02 22:46:06 -0800
commit80b4a81b9443a27acc579193279ec5dde52870b5 (patch)
tree5ac9b71ef6c7c64c94ea8c66f5f9792b09a6256c /meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb
parent6b17a48152a41357ce4389c98fb2e6847f8dfadb (diff)
downloadmeta-openembedded-80b4a81b9443a27acc579193279ec5dde52870b5.tar.gz
protobuf-c: upgrade 1.3.2 -> 1.3.3
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb')
-rw-r--r--meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb b/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb
new file mode 100644
index 0000000000..94c3893574
--- /dev/null
+++ b/meta-oe/recipes-devtools/protobuf/protobuf-c_1.3.3.bb
@@ -0,0 +1,36 @@
1SUMMARY = "Protocol Buffers - structured data serialisation mechanism"
2DESCRIPTION = "This is protobuf-c, a C implementation of the Google Protocol Buffers data \
3serialization format. It includes libprotobuf-c, a pure C library that \
4implements protobuf encoding and decoding, and protoc-c, a code generator that \
5converts Protocol Buffer .proto files to C descriptor code, based on the \
6original protoc. protobuf-c formerly included an RPC implementation; that code \
7has been split out into the protobuf-c-rpc project."
8HOMEPAGE = "https://github.com/protobuf-c/protobuf-c"
9SECTION = "console/tools"
10LICENSE = "BSD-2-Clause"
11LIC_FILES_CHKSUM = "file://LICENSE;md5=cb901168715f4782a2b06c3ddaefa558"
12
13DEPENDS = "protobuf-native protobuf"
14
15SRCREV = "f20a3fa131c275a0e795d99a28f94b4dbbb5af26"
16
17SRC_URI = "git://github.com/protobuf-c/protobuf-c.git \
18 file://0001-avoid-race-condition.patch \
19 "
20
21S = "${WORKDIR}/git"
22
23#make sure c++11 is used
24CXXFLAGS += "-std=c++11"
25BUILD_CXXFLAGS += "-std=c++11"
26
27inherit autotools pkgconfig
28
29PACKAGE_BEFORE_PN = "${PN}-compiler"
30
31FILES_${PN}-compiler = "${bindir}"
32
33RDEPENDS_${PN}-compiler = "protobuf-compiler"
34RDEPENDS_${PN}-dev += "${PN}-compiler"
35
36BBCLASSEXTEND = "native nativesdk"