blob: e3e96750a67d3245d3406f1e3a9a8d68f9bbc5fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
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'
fails_with :llvm do
cause "Segmentation faults occur at run-time with LLVM using qemu-system-arm."
end
def install
system "./configure", "--prefix=#{prefix}",
"--disable-darwin-user",
"--enable-cocoa",
"--disable-bsd-user",
"--disable-guest-agent"
system "make install"
end
end
|