ctf-tools/qemu/install

8 lines
169 B
Text
Raw Normal View History

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