2020-01-24 11:18:18 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
|
|
|
|
|
|
cd "$SCRIPTPATH/.."
|
|
|
|
|
|
|
|
if [[ ! -d r2dec-js ]]; then
|
2020-12-16 10:59:23 +00:00
|
|
|
git clone https://github.com/rizinorg/r2dec-js.git --depth 1 --branch master
|
2020-10-03 10:50:57 +00:00
|
|
|
#cd r2dec-js
|
|
|
|
#git checkout b5a0d15c7bcc488f268ffb0931b7ced2919f6c9d
|
|
|
|
#cd ..
|
2020-01-24 11:18:18 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
cd r2dec-js
|
|
|
|
rm -rf build
|
|
|
|
mkdir build && cd build
|
2020-12-16 10:59:23 +00:00
|
|
|
meson --buildtype=release --libdir=share/rizin/plugins --datadir=share/rizin/plugins "$@" ../p
|
2020-01-24 11:18:18 +00:00
|
|
|
ninja
|
|
|
|
ninja install
|
|
|
|
|