2017-03-14 02:24:00 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://rada.re
|
2016-09-16 14:09:00 +02:00
|
|
|
TERMUX_PKG_DESCRIPTION="Advanced Hexadecimal Editor"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
2020-12-20 14:16:34 +01:00
|
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
2021-02-07 21:39:18 +01:00
|
|
|
TERMUX_PKG_VERSION=5.1.0
|
2016-09-16 14:09:00 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/radare/radare2/archive/$TERMUX_PKG_VERSION.tar.gz
|
2021-02-07 21:39:18 +01:00
|
|
|
TERMUX_PKG_SHA256=f9d9edf885bd1c08d43828658be0f0766c84f9a6c3a1be789885100b533128b2
|
2018-10-18 06:52:11 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libuv"
|
2019-07-20 10:42:33 +02:00
|
|
|
TERMUX_PKG_BREAKS="radare2-dev"
|
|
|
|
TERMUX_PKG_REPLACES="radare2-dev"
|
2019-08-12 17:28:41 +02:00
|
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
2016-09-16 14:09:00 +02:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-compiler=termux-host"
|
2016-09-22 02:04:02 +02:00
|
|
|
|
|
|
|
termux_step_pre_configure() {
|
2019-08-08 14:25:54 +02:00
|
|
|
# Certain packages are not safe to build on device because their
|
|
|
|
# build.sh script deletes specific files in $TERMUX_PREFIX.
|
2019-08-12 17:28:41 +02:00
|
|
|
if $TERMUX_ON_DEVICE_BUILD; then
|
2019-08-08 14:25:54 +02:00
|
|
|
termux_error_exit "Package '$TERMUX_PKG_NAME' is not safe for on-device builds."
|
|
|
|
fi
|
|
|
|
|
2016-09-22 02:04:02 +02:00
|
|
|
# Unset CPPFLAGS to avoid -I$TERMUX_PREFIX/include. This is because
|
2020-09-04 13:28:07 +02:00
|
|
|
# radare2 build will put its own -I flags after ours, which causes
|
2016-09-22 02:04:02 +02:00
|
|
|
# problems due to name clashes (binutils header files).
|
|
|
|
unset CPPFLAGS
|
2016-11-11 01:39:33 +01:00
|
|
|
|
2017-10-13 19:14:40 +02:00
|
|
|
# If this variable is not set, then build will fail on linking with 'pthread'
|
|
|
|
export ANDROID=1
|
2017-10-13 18:48:39 +02:00
|
|
|
|
2018-05-23 22:58:29 +02:00
|
|
|
export OBJCOPY=$TERMUX_HOST_PLATFORM-objcopy
|
|
|
|
|
2016-11-11 01:39:33 +01:00
|
|
|
# Remove old libs which may mess with new build:
|
|
|
|
rm -f $TERMUX_PREFIX/lib/libr_*
|
2016-09-22 02:04:02 +02:00
|
|
|
}
|