2015-05-14 05:29:52 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# it's z3!
|
|
|
|
pip install https://github.com/zardus/z3/archive/pypy-and-setup.zip
|
|
|
|
|
|
|
|
# pybfd can't be installed with pip
|
2015-12-09 22:42:41 +00:00
|
|
|
git clone --depth 1 https://github.com/Groundworkstech/pybfd
|
2015-05-14 05:29:52 +00:00
|
|
|
cd pybfd/
|
|
|
|
python setup.py install
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# install barf
|
2015-12-09 22:42:41 +00:00
|
|
|
git clone --depth 1 https://github.com/programa-stic/barf-project
|
2015-05-14 05:29:52 +00:00
|
|
|
cd barf-project/
|
|
|
|
pip install -e pyasmjit/
|
|
|
|
pip install -e barf/
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
mkdir -p bin
|
|
|
|
ln -s $(which BARFgadgets) bin/barfgadgets
|