mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-08 10:38:47 +00:00
17 lines
231 B
Text
17 lines
231 B
Text
|
#!/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
|