2020-01-24 11:18:18 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
|
|
|
|
|
|
cd "$SCRIPTPATH/.."
|
|
|
|
|
2021-01-16 10:48:31 +00:00
|
|
|
if [[ ! -d jsdec ]]; then
|
2021-10-10 12:51:19 +00:00
|
|
|
git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch v0.3.1
|
2020-01-24 11:18:18 +00:00
|
|
|
fi
|
|
|
|
|
2021-01-16 10:48:31 +00:00
|
|
|
cd jsdec
|
2020-01-24 11:18:18 +00:00
|
|
|
rm -rf build
|
|
|
|
mkdir build && cd build
|
2021-10-10 12:51:19 +00:00
|
|
|
meson --buildtype=release -Drizin_plugdir=share/rizin/plugins -Djsc_folder="../" --libdir=share/rizin/plugins --datadir=share/rizin/plugins "$@" ../p
|
2020-01-24 11:18:18 +00:00
|
|
|
ninja
|
|
|
|
ninja install
|
|
|
|
|