mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 19:36:11 +00:00
17 lines
363 B
Bash
Executable File
17 lines
363 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
|
|
cd "$SCRIPTPATH/.."
|
|
|
|
if [[ ! -d r2ghidra-dec ]]; then
|
|
git clone --depth 1 --recurse-submodules https://github.com/radareorg/r2ghidra-dec.git || exit 1
|
|
fi
|
|
cd r2ghidra-dec || exit 1
|
|
|
|
mkdir build && cd build || exit 1
|
|
cmake -G Ninja "$@" .. || exit 1
|
|
ninja || exit 1
|
|
ninja install || exit 1
|
|
|