radare2/env.sh

46 lines
767 B
Bash
Raw Normal View History

#!/bin/sh
2015-07-20 20:50:33 +00:00
pfx="$1"
if [ -z "$pfx" ]; then
2015-07-20 20:50:33 +00:00
echo "Usage: ./env.sh [destdir|prefix] [program]"
exit 1
fi
2015-07-20 20:50:33 +00:00
if [ ! -d "$pfx" ]; then
echo "Cannot find $pfx directory"
exit 1
fi
# Support DESTDIR
if [ -d "$pfx/usr/bin" ]; then
pfx="$pfx/usr"
fi
new_env='
LIBR_PLUGINS=${pfx}/lib/radare2
PATH=$pfx/bin:${PATH}
LD_LIBRARY_PATH=$pfx/lib:$LD_LIBRARY_PATH
DYLD_LIBRARY_PATH=$pfx/lib:$DYLD_LIBRARY_PATH
PKG_CONFIG_PATH=$pfx/lib/pkgconfig:$PKG_CONFIG_PATH
'
2015-07-20 20:50:33 +00:00
shift
2015-07-20 20:50:33 +00:00
if [ -z "$*" ]; then
echo
echo "==> Entering radare2 environment shell..."
echo
echo $new_env $* \
| sed -e 's, ,\n,g' \
| sed -e 's,^, ,g' \
| sed -e 's,$, \\,'
echo
export PS1="r2env.sh$ "
eval $new_env $SHELL
echo
echo "==> Back to system shell..."
echo
else
eval $new_env $*
fi