mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 10:56:11 +00:00
88478ffb30
Switch from r2dec to jsdec
20 lines
366 B
Bash
Executable File
20 lines
366 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
|
|
cd "$SCRIPTPATH/.."
|
|
|
|
if [[ ! -d jsdec ]]; then
|
|
git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch master
|
|
fi
|
|
|
|
cd jsdec
|
|
rm -rf build
|
|
mkdir build && cd build
|
|
meson --buildtype=release --libdir=share/rizin/plugins --datadir=share/rizin/plugins "$@" ../p
|
|
ninja
|
|
ninja install
|
|
|