mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
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 v0.2.x
|
|
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
|
|
|