mirror of
https://github.com/geohot/qira
synced 2025-02-06 01:24:12 +03:00
14 lines
254 B
Bash
Executable File
14 lines
254 B
Bash
Executable File
#!/bin/bash -e
|
|
mkdir -p capstone
|
|
cd capstone
|
|
if [ ! -d capstone-3.0 ]; then
|
|
echo "downloading capstone"
|
|
wget http://www.capstone-engine.org/download/3.0/capstone-3.0.tgz
|
|
tar xf capstone-3.0.tgz
|
|
fi
|
|
|
|
cd capstone-3.0
|
|
./make.sh
|
|
sudo ./make.sh install
|
|
|