New formula: qemu

Signed-off-by: David Höppner <0xffea@gmail.com>
master
Rich Hong 2010-02-19 22:16:32 -05:00 committed by David Höppner
parent 927b963112
commit 2fefa7ccb0
1 changed files with 15 additions and 0 deletions

15
Formula/qemu.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class Qemu <Formula
url 'http://download.savannah.gnu.org/releases/qemu/qemu-0.12.2.tar.gz'
homepage 'http://www.qemu.org/'
md5 '1d7c2d95acb6d0789de86508c608e26d'
def install
system "./configure", "--prefix=#{prefix}",
"--disable-darwin-user",
"--enable-cocoa",
"--disable-bsd-user"
system "make install"
end
end