ctf-tools/qemu/install
2015-12-09 14:28:28 -08:00

7 lines
169 B
Bash
Executable file

#!/bin/bash
curl http://wiki.qemu-project.org/download/qemu-2.4.0.1.tar.bz2 | tar xj
cd qemu-2.4.0.1
./configure --prefix=$(dirname $PWD)
make -j $(nproc)
make install