mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
bb65c27a77
Fixes
ERROR: fluentbit-0.12.19-r0 do_package: QA Issue: fluentbit: Files/directories were installed but not shipped in any package:
/usr/lib/libfluent-bit.so
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 99fe1dec83)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
31 lines
966 B
BlitzBasic
31 lines
966 B
BlitzBasic
SUMMARY = "Fast data collector for Embedded Linux"
|
|
HOMEPAGE = "http://fluentbit.io"
|
|
BUGTRACKER = "https://github.com/fluent/fluent-bit/issues"
|
|
|
|
SRC_URI = "http://fluentbit.io/releases/0.12/fluent-bit-${PV}.tar.gz \
|
|
file://jemalloc.patch \
|
|
file://cmake_multilib.patch \
|
|
"
|
|
SRC_URI[md5sum] = "7c8708312ac9122faacf9e2a4751eb34"
|
|
SRC_URI[sha256sum] = "23a81087edf0e2c6f2d49411c6a82308afc5224f67bbaa45729c057af62e9241"
|
|
|
|
S = "${WORKDIR}/fluent-bit-${PV}"
|
|
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
|
|
|
|
DEPENDS = "zlib"
|
|
INSANE_SKIP_${PN}-dev += "dev-elf"
|
|
|
|
inherit cmake systemd
|
|
|
|
EXTRA_OECMAKE = "-DGNU_HOST=${HOST_SYS} -DFLB_ALL=ON -DFLB_TD=1"
|
|
|
|
# With Ninja it fails with:
|
|
# ninja: error: build.ninja:134: bad $-escape (literal $ must be written as $$)
|
|
OECMAKE_GENERATOR = "Unix Makefiles"
|
|
|
|
SYSTEMD_SERVICE_${PN} = "td-agent-bit.service"
|
|
|
|
TARGET_CC_ARCH_append = " ${SELECTED_OPTIMIZATION}"
|