27 lines
761 B
BlitzBasic
27 lines
761 B
BlitzBasic
|
DESCRIPTION = "Valgrind is an instrumentation framework for building dynamic analysis tools."
|
||
|
HOMEPAGE = "http://www.valgrind.org"
|
||
|
SECTION = "devel"
|
||
|
LICENSE = "GPLv2"
|
||
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c46082167a314d785d012a244748d803"
|
||
|
|
||
|
inherit autotools
|
||
|
PR = r0
|
||
|
|
||
|
SRC_URI = "http://valgrind.sourcearchive.com/downloads/${PV}/valgrind_${PV}.orig.tar.bz2"
|
||
|
SRC_URI[sha256sum] = "e6af71a06bc2534541b07743e1d58dc3caf744f38205ca3e5b5a0bdf372ed6f0"
|
||
|
|
||
|
S = "${WORKDIR}/${PN}-${PV}"
|
||
|
|
||
|
do_configure () {
|
||
|
./configure \
|
||
|
--build=${BUILD_SYS} \
|
||
|
--host=armv7-none-linux-gnueabi \
|
||
|
--target=${TARGET_SYS} \
|
||
|
--prefix=${prefix} \
|
||
|
--enable-only32bit \
|
||
|
--with-tmpdir=/tmp
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
oe_runmake 'DESTDIR=${D}' install
|
||
|
}
|