ctf-tools/qemu/install
2016-10-13 19:04:58 -07:00

10 lines
246 B
Bash
Executable file

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