blob: 9d80c5830a1ba1a7fc7a1da3b0f1ae1c6686b3f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
DESCRIPTION = "Tools for performance analysis."
LICENSE = "GPL"
MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
SRC_URI = "ftp://ftp.bitmover.com/lmbench/lmbench-${PV}.tgz \
file://debian.patch;patch=1 \
file://exe.patch;patch=1 \
file://lmbench-run"
S = "${WORKDIR}/lmbench-${PV}"
EXTRA_OEMAKE = '"CC=${CC}" "AR=${AR}" "CFLAGS=$CFLAGS" \
"LDFLAGS=${LDFLAGS}" "LD=${LD}" "OS=${TARGET_SYS}" \
"TARGET=${TARGET_OS}" "O=${S}/bin/${TARGET_SYS}"'
python do_unpack () {
oe.build.exec_func('base_do_unpack', d)
oe.build.exec_func('byebk_do_unpack', d)
}
byebk_do_unpack () {
find ${S}/.. -name BitKeeper -o -name SCCS | xargs rm -rf
}
do_compile () {
. ${CONFIG_SITE}
if [ X"$ac_cv_uint" == X"yes" ]; then
CFLAGS="${CFLAGS} -DHAVE_uint"
fi
install -d ${S}/bin/${TARGET_SYS}
oe_runmake -C src exe
sed -i -e 's,^SHAREDIR=.*$,SHAREDIR=${D}/${datadir}/${PN},; \
s,^BINDIR=.*$,BINDIR=${D}/${libdir}/${PN},;' ${WORKDIR}/lmbench-run
}
do_install () {
oe_runmake 'PREFIX=${D}/${prefix}' \
'SHAREDIR=${D}/${datadir}/${PN}' \
'BINDIR=${D}/${libdir}/lmbench' install
install -d ${D}/${bindir}
install -m 0755 ${WORKDIR}/lmbench-run ${D}/${bindir}/
}
|