79 lines
2.5 KiB
Ruby
79 lines
2.5 KiB
Ruby
class Qemu < Formula
|
|
desc "x86 and PowerPC Emulator"
|
|
homepage "https://www.qemu.org/"
|
|
url "https://download.qemu.org/qemu-2.12.0.tar.bz2"
|
|
sha256 "c9f4a147bc915d24df9784affc611a115f42d24720a89210b479f1ba7a3f679c"
|
|
head "https://git.qemu.org/git/qemu.git"
|
|
|
|
bottle do
|
|
sha256 "ef4da4274e0e582cff223d46736d386ea78444e7943bcb47f4541bec9e6b7786" => :high_sierra
|
|
sha256 "c896fa77d0b63a9c7fc5e7ad9ee64ab72c3d0995cc1031ef9326b41a3d189240" => :sierra
|
|
sha256 "95a8d1f152c57161dee4f0f36a7409ff413631d0ca5afb7fe5d986b13abaf0ae" => :el_capitan
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "jpeg"
|
|
depends_on "gnutls"
|
|
depends_on "glib"
|
|
depends_on "ncurses"
|
|
depends_on "pixman"
|
|
depends_on "libpng" => :recommended
|
|
depends_on "vde" => :optional
|
|
depends_on "sdl2" => :optional
|
|
depends_on "gtk+" => :optional
|
|
depends_on "libssh2" => :optional
|
|
depends_on "libusb" => :optional
|
|
|
|
deprecated_option "with-sdl" => "with-sdl2"
|
|
|
|
fails_with :gcc_4_0 do
|
|
cause "qemu requires a compiler with support for the __thread specifier"
|
|
end
|
|
|
|
fails_with :gcc do
|
|
cause "qemu requires a compiler with support for the __thread specifier"
|
|
end
|
|
|
|
# 820KB floppy disk image file of FreeDOS 1.2, used to test QEMU
|
|
resource "test-image" do
|
|
url "https://dl.bintray.com/homebrew/mirror/FD12FLOPPY.zip"
|
|
sha256 "81237c7b42dc0ffc8b32a2f5734e3480a3f9a470c50c14a9c4576a2561a35807"
|
|
end
|
|
|
|
def install
|
|
ENV["LIBTOOL"] = "glibtool"
|
|
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--cc=#{ENV.cc}
|
|
--host-cc=#{ENV.cc}
|
|
--disable-bsd-user
|
|
--disable-guest-agent
|
|
--enable-curses
|
|
--extra-cflags=-DNCURSES_WIDECHAR=1
|
|
]
|
|
|
|
# Cocoa and SDL2/GTK+ UIs cannot both be enabled at once.
|
|
if build.with?("sdl2") || build.with?("gtk+")
|
|
args << "--disable-cocoa"
|
|
else
|
|
args << "--enable-cocoa"
|
|
end
|
|
|
|
args << (build.with?("vde") ? "--enable-vde" : "--disable-vde")
|
|
args << (build.with?("sdl2") ? "--enable-sdl" : "--disable-sdl")
|
|
args << (build.with?("gtk+") ? "--enable-gtk" : "--disable-gtk")
|
|
args << (build.with?("libssh2") ? "--enable-libssh2" : "--disable-libssh2")
|
|
|
|
system "./configure", *args
|
|
system "make", "V=1", "install"
|
|
end
|
|
|
|
test do
|
|
expected = build.stable? ? version.to_s : "QEMU Project"
|
|
assert_match expected, shell_output("#{bin}/qemu-system-i386 --version")
|
|
resource("test-image").stage testpath
|
|
assert_match "file format: raw", shell_output("#{bin}/qemu-img info FLOPPY.img")
|
|
end
|
|
end
|