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-03-31 17:08:58 +00:00
|
|
|
git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch v0.2.x
|
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
|
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
|
|
|
|
|