ctf-tools/qemu/install
raildex1 90135d43d2 Update install
Fixed qemu url
2017-04-25 04:54:44 +10:00

10 lines
237 B
Bash
Executable file

#!/bin/bash -ex
set -e -o pipefail
curl http://download.qemu.org/qemu-2.8.1.tar.bz2 | tar xvj
cd qemu-2.8.1
source ctf-tools-venv-activate
./configure "--prefix=$(dirname $PWD)" "--python=$(which python)"
make -j $(nproc)
make install