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