diff options
author | Eduardo Silva <eduardo@monkey.io> | 2016-04-27 10:13:18 -0600 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-05-06 12:38:33 +0200 |
commit | c16b6e686baf844d808cc2fefbff93357a51f2df (patch) | |
tree | c8aed9dc237302066205939e3ec41d1169d1975e /meta-oe/recipes-extended | |
parent | cdd326f7a61fdf02773a22bf8c5c099c58b205a9 (diff) | |
download | meta-openembedded-c16b6e686baf844d808cc2fefbff93357a51f2df.tar.gz |
fluentbit: add new recipe
Fluent Bit is an open source data collector for Embedded Linux, this
patch adds the recipe for version 0.7.2.
Project web site: http://fluentbit.io
Documentation : http://fluentbit.io/documentation/
Signed-off-by: Eduardo Silva <eduardo@monkey.io>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r-- | meta-oe/recipes-extended/fluentbit/fluentbit_0.7.2.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/fluentbit/fluentbit_0.7.2.bb b/meta-oe/recipes-extended/fluentbit/fluentbit_0.7.2.bb new file mode 100644 index 000000000..c75f446e1 --- /dev/null +++ b/meta-oe/recipes-extended/fluentbit/fluentbit_0.7.2.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | SUMMARY = "Fast data collector for Embedded Linux" | ||
2 | HOMEPAGE = "http://fluentbit.io" | ||
3 | BUGTRACKER = "https://github.com/fluent/fluent-bit/issues" | ||
4 | |||
5 | SRC_URI = "http://fluentbit.io/releases/0.7/fluent-bit-${PV}.tar.gz" | ||
6 | SRC_URI[md5sum] = "6df9d676e1d2d782a243e655e144e8ae" | ||
7 | SRC_URI[sha256sum] = "695b56ce378f56855c9554f88f5d8e4f7b11ba7691284903870f779912af4ebe" | ||
8 | S = "${WORKDIR}/fluent-bit-${PV}" | ||
9 | |||
10 | LICENSE = "Apache-2.0" | ||
11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" | ||
12 | |||
13 | DEPENDS = "zlib" | ||
14 | INSANE_SKIP_${PN}-dev += "dev-elf" | ||
15 | |||
16 | inherit cmake | ||