termux-api: Add options to termux-notification
[termux-packages] / packages / valgrind / build.sh
1 TERMUX_PKG_HOMEPAGE=http://valgrind.org/
2 TERMUX_PKG_DESCRIPTION="Valgrind is an instrumentation framework for building dynamic analysis tools."
3 TERMUX_PKG_VERSION=3.12.0
4 TERMUX_PKG_SRCURL=http://valgrind.org/downloads/valgrind-${TERMUX_PKG_VERSION}.tar.bz2
5 TERMUX_PKG_SHA256=67ca4395b2527247780f36148b084f5743a68ab0c850cb43e4a5b4b012cf76a1
6 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-tmpdir=$TERMUX_PREFIX/tmp"
7 # - Does not build on x86_64 due to lacking upstream support of that arch on android.
8 TERMUX_PKG_BLACKLISTED_ARCHES="x86_64"
9
10 if [ "$TERMUX_ARCH" == "arm" ]; then
11 # valgrind doesn't like arm; armv7 works, though.
12 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --host=armv7-linux-androideabi"
13 fi
14