ctf-tools/qemu/install

8 lines
166 B
Text
Raw Normal View History

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