mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
License change is due to update in FSF address. Library path needs to be specified in absolute form now. Remove bash completion file from kernelshark package as it will cause a conflict with trace-cmd package. Add a patch to resolve musl build issues. (From OE-Core rev: 9f07921c6dcb2ea0abeaf1943aa2de5d81c82c0f) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
906 B
BlitzBasic
34 lines
906 B
BlitzBasic
SUMMARY = "User interface to Ftrace"
|
|
LICENSE = "GPLv2 & LGPLv2.1"
|
|
|
|
require trace-cmd.inc
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
|
|
file://trace-cmd.c;beginline=6;endline=8;md5=2c22c965a649ddd7973d7913c5634a5e \
|
|
file://COPYING.LIB;md5=edb195fe538e4552c1f6ca0fd7bf4f0a \
|
|
file://trace-input.c;beginline=5;endline=8;md5=3ec82f43bbe0cfb5951ff414ef4d44d0 \
|
|
"
|
|
|
|
EXTRA_OEMAKE = "\
|
|
'prefix=${prefix}' \
|
|
'bindir=${bindir}' \
|
|
'man_dir=${mandir}' \
|
|
'html_install=${datadir}/kernelshark/html' \
|
|
'img_install=${datadir}/kernelshark/html/images' \
|
|
\
|
|
'bindir_relative=${@oe.path.relative(prefix, bindir)}' \
|
|
'libdir=${libdir}' \
|
|
\
|
|
NO_PYTHON=1 \
|
|
"
|
|
|
|
do_compile_prepend() {
|
|
# Make sure the recompile is OK
|
|
rm -f ${B}/.*.d
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR="${D}" install
|
|
}
|
|
|