mirror of
https://git.yoctoproject.org/poky
synced 2026-03-29 23:02:20 +02:00
A lot of our recipes had short one-line DESCRIPTION values and no SUMMARY value set. In this case it's much better to just set SUMMARY since DESCRIPTION is defaulted from SUMMARY anyway and then the SUMMARY is at least useful. I also took the opportunity to fix up a lot of the new SUMMARY values, making them concisely explain the function of the recipe / package where possible. (From OE-Core rev: b8feee3cf21f70ba4ec3b822d2f596d4fc02a292) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
899 B
BlitzBasic
30 lines
899 B
BlitzBasic
SUMMARY = "Graphical trace viewer for Ftrace"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
|
|
file://kernel-shark.c;beginline=6;endline=8;md5=2c22c965a649ddd7973d7913c5634a5e"
|
|
|
|
SRCREV = "7055ffd37beeb44714e86a4abc703f7e175a0db5"
|
|
PR = "r3"
|
|
PV = "1.2+git${SRCPV}"
|
|
|
|
DEPENDS = "gtk+"
|
|
RDEPENDS_${PN} = "trace-cmd"
|
|
|
|
inherit pkgconfig pythonnative
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git \
|
|
file://addldflags.patch \
|
|
file://make-docs-optional.patch \
|
|
file://blktrace-api-compatibility.patch"
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "'CC=${CC}' 'AR=${AR}' 'prefix=${prefix}' gui"
|
|
|
|
FILESPATH = "${FILE_DIRNAME}/trace-cmd"
|
|
|
|
do_install() {
|
|
oe_runmake CC="${CC}" AR="${AR}" prefix="${prefix}" DESTDIR="${D}" install_gui
|
|
rm -rf ${D}${datadir}/trace-cmd
|
|
rmdir ${D}${datadir}
|
|
}
|