2010-02-20 03:16:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Qemu < Formula
|
2010-02-20 03:16:32 +00:00
|
|
|
homepage 'http://www.qemu.org/'
|
2012-06-04 21:05:52 +00:00
|
|
|
url 'http://wiki.qemu.org/download/qemu-1.1.0.tar.bz2'
|
|
|
|
sha256 '927f498eff8dce2334de9338cae9e3a7c63bd472c85451235c45de5029140fc0'
|
2010-02-20 03:16:32 +00:00
|
|
|
|
2010-11-02 23:07:45 +00:00
|
|
|
depends_on 'jpeg'
|
|
|
|
depends_on 'gnutls'
|
2012-05-17 10:34:59 +00:00
|
|
|
depends_on 'glib'
|
|
|
|
|
|
|
|
fails_with :clang do
|
|
|
|
build 318
|
|
|
|
end
|
2010-11-02 23:07:45 +00:00
|
|
|
|
2010-02-20 03:16:32 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
2012-04-29 18:04:24 +00:00
|
|
|
"--cc=#{ENV.cc}",
|
|
|
|
"--host-cc=#{ENV.cc}",
|
2010-02-20 03:16:32 +00:00
|
|
|
"--enable-cocoa",
|
2011-08-19 22:04:14 +00:00
|
|
|
"--disable-bsd-user",
|
|
|
|
"--disable-guest-agent"
|
2010-02-20 03:16:32 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|