ctf-tools/z3/install
2016-09-21 12:03:01 +00:00

16 lines
231 B
Bash
Executable file

#!/bin/bash
git clone https://github.com/Z3Prover/z3
cd z3
# move to ctftools virtual env
source ${VIRTUALENVWRAPPER_SCRIPT}
workon ctftools
# install z3
python scripts/mk_make.py --python
cd build
make
make install
deactivate