diff options
-rw-r--r-- | meta-oe/recipes-support/libcppkafka/libcppkafka_git.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libcppkafka/libcppkafka_git.bb b/meta-oe/recipes-support/libcppkafka/libcppkafka_git.bb new file mode 100644 index 0000000000..6237638d3d --- /dev/null +++ b/meta-oe/recipes-support/libcppkafka/libcppkafka_git.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "high level C++ wrapper for rdkafka" | ||
2 | DESCRIPTION = "cppkafka allows C++ applications to consume and produce messages using the Apache Kafka protocol." | ||
3 | HOMEPAGE = "https://github.com/mfontanini/cppkafka" | ||
4 | SECTION = "lib" | ||
5 | LICENSE = "BSD-2-Clause" | ||
6 | |||
7 | LIC_FILES_CHKSUM = " \ | ||
8 | file://LICENSE;md5=d8b4ca15d239dc1485ef495c8f1bcc72 \ | ||
9 | " | ||
10 | |||
11 | SRC_URI = "git://github.com/mfontanini/cppkafka;protocol=https" | ||
12 | SRCREV = "5e4b350806d561473138ce7a982e8f6cf2e77733" | ||
13 | |||
14 | DEPENDS = "librdkafka boost chrpath-replacement-native" | ||
15 | |||
16 | inherit cmake | ||
17 | |||
18 | S = "${WORKDIR}/git" | ||
19 | |||
20 | do_install_append(){ | ||
21 | chrpath -d ${D}${libdir}/libcppkafka.so.0.3.1 | ||
22 | } | ||