diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-09-08 16:19:55 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-09-08 21:29:53 -0700 |
| commit | 71ab0ca5d65ded4cd812cb99addb6a52f6d5b6b2 (patch) | |
| tree | e41143f3d9786d2e944ef490428f85101d7fc46f /meta-oe/recipes-devtools/msgpack/msgpack-cpp_4.0.2.bb | |
| parent | 88e4b40c84e4e90a564bcf2fea757e2a0cd8464b (diff) | |
| download | meta-openembedded-71ab0ca5d65ded4cd812cb99addb6a52f6d5b6b2.tar.gz | |
msgpack-c: update 3.2.1 -> 4.0.0, add msgpack-cpp
Upstream has split the C and C++ versions into separate
components so add the recipe for CPP flavour.
The only consumer in meta-oe, tmate, still builds fine.
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/msgpack/msgpack-cpp_4.0.2.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/msgpack/msgpack-cpp_4.0.2.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/msgpack/msgpack-cpp_4.0.2.bb b/meta-oe/recipes-devtools/msgpack/msgpack-cpp_4.0.2.bb new file mode 100644 index 0000000000..f66a00bd84 --- /dev/null +++ b/meta-oe/recipes-devtools/msgpack/msgpack-cpp_4.0.2.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | SUMMARY = "MessagePack implementation for C and C++" | ||
| 2 | DESCRIPTION = "MessagePack is an efficient binary serialization format. It's like JSON. but fast and small" | ||
| 3 | HOMEPAGE = "http://msgpack.org/index.html" | ||
| 4 | LICENSE = "BSL-1.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://NOTICE;md5=7a858c074723608e08614061dc044352 \ | ||
| 6 | file://COPYING;md5=0639c4209b6f2abf1437c813b208f2d3 \ | ||
| 7 | file://LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c \ | ||
| 8 | " | ||
| 9 | |||
| 10 | PV .= "+git${SRCPV}" | ||
| 11 | |||
| 12 | SRC_URI = "git://github.com/msgpack/msgpack-c;branch=cpp_master \ | ||
| 13 | " | ||
| 14 | SRCREV = "3bdbf0d2ee75d46d71afa691a594777d89a22cf7" | ||
| 15 | |||
| 16 | DEPENDS += "boost" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/git" | ||
| 19 | |||
| 20 | inherit cmake pkgconfig | ||
| 21 | |||
| 22 | BBCLASSEXTEND += "native nativesdk" | ||
