Files
radaree2/autogen.sh
2026-03-08 09:31:26 +01:00

45 lines
909 B
Bash
Executable File

#!/bin/sh
#
# Look for the 'acr' tool here: https://github.com/radare/acr
# Clone last version of ACR from here:
# git clone https://github.com/radare/acr
#
# -- pancake
r2pm -h >/dev/null 2>&1
if [ $? = 0 ]; then
echo "Installing the last version of 'acr'..."
r2pm -i acr > /dev/null
r2pm -r acr -h > /dev/null 2>&1
if [ $? = 0 ]; then
echo "Running 'acr -p'..."
r2pm -r acr -p || exit 1
else
echo "Cannot find 'acr' in PATH"
fi
else
echo "Running acr..."
acr -p || exit 1
fi
if [ -d subprojects ]; then
cd subprojects || exit 1
sh autogen.sh
cd ..
fi
V=`./configure -qV | cut -d - -f -1`
meson rewrite kwargs set project / version "$V"
if [ -n "$1" ]; then
echo "./configure $*"
./configure $*
fi
[ -z "$EDITOR" ] && EDITOR=vim
$EDITOR README.md
$EDITOR sys/install-debs.sh
$EDITOR dist/rpm/radare2.spec
$EDITOR dist/npm/package.json
for a in dist/wapm/*/*.toml ; do
$EDITOR $a
done