mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
10 lines
246 B
Bash
Executable file
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
|