ctf-tools/qemu/install
2015-05-07 11:54:16 -07:00

7 lines
167 B
Bash
Executable file

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