mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
The recent change to blktrace removed the do_install method, since this recipe does not use autotools it needs to specifiy a do_install activity. (From OE-Core rev: f8832d969746fb879e63d1b28e6beef5ab82a39d) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
608 B
BlitzBasic
29 lines
608 B
BlitzBasic
DESCRIPTION = "blktrace - generate traces of the I/O traffic on block devices"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
|
|
|
DEPENDS = "libaio"
|
|
|
|
SRCREV = "d6918c8832793b4205ed3bfede78c2f915c23385"
|
|
|
|
PR = "r6"
|
|
PV = "1.0.5+git${SRCPV}"
|
|
|
|
SRC_URI = "git://git.kernel.dk/blktrace.git;protocol=git \
|
|
file://ldflags.patch"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "\
|
|
'CC=${CC}' \
|
|
'CFLAGS=${CFLAGS}' \
|
|
'LDFLAGS=${LDFLAGS}' \
|
|
"
|
|
PARALLEL_MAKE = ""
|
|
|
|
do_install() {
|
|
oe_runmake ARCH="${ARCH}" prefix=${prefix} \
|
|
mandir=${mandir} DESTDIR=${D} install
|
|
}
|
|
|