homebrew-core/Formula/qemu.rb

22 lines
599 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Qemu < Formula
url 'http://wiki.qemu.org/download/qemu-0.15.0.tar.gz'
homepage 'http://www.qemu.org/'
md5 'dbc55b014bcd21b98e347f6a90f7fb6d'
depends_on 'jpeg'
depends_on 'gnutls'
2012-02-21 03:21:26 +00:00
fails_with_llvm "Segmentation faults occur at run-time with LLVM using qemu-system-arm."
def install
system "./configure", "--prefix=#{prefix}",
"--disable-darwin-user",
"--enable-cocoa",
"--disable-bsd-user",
"--disable-guest-agent"
system "make install"
end
end