mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
25 lines
566 B
Bash
Executable File
25 lines
566 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
|
|
cd "$SCRIPTPATH/.."
|
|
|
|
if [[ ! -d rz-ghidra ]]; then
|
|
# remove depth, branch and uncomment lines below to use specifc commit
|
|
|
|
git clone --recurse-submodules https://github.com/rizinorg/rz-ghidra.git --depth 1 --branch master || exit 1
|
|
|
|
#pushd rz-ghidra
|
|
#git checkout --recurse-submodules 5e845f4b50e8559bd51af03b22b6586e8cc5c35c
|
|
#popd
|
|
fi
|
|
cd rz-ghidra || exit 1
|
|
|
|
mkdir build && cd build || exit 1
|
|
cmake -G Ninja "$@" .. || exit 1
|
|
ninja || exit 1
|
|
ninja install || exit 1
|
|
|