81 lines
2.6 KiB
Ruby
81 lines
2.6 KiB
Ruby
class Qemu < Formula
|
|
desc "x86 and PowerPC Emulator"
|
|
homepage "https://www.qemu.org/"
|
|
url "https://download.qemu.org/qemu-3.0.0.tar.xz"
|
|
sha256 "8d7af64fe8bd5ea5c3bdf17131a8b858491bcce1ee3839425a6d91fb821b5713"
|
|
head "https://git.qemu.org/git/qemu.git"
|
|
|
|
bottle do
|
|
sha256 "cd3947c51aef37a498acce4e8b9d50ebf220c140450881b950e62d1b2ddb98ff" => :mojave
|
|
sha256 "5e968020a7c3d0c1722702abf46daa494d9d5bb6c3f09372e34be52dd7f8ae73" => :high_sierra
|
|
sha256 "e9614f27e5079515cb4af27c9407e1518244e7ea787f4deb84c90fd004627838" => :sierra
|
|
sha256 "5ef45b8990941c95ece335b513433466a42c821ec0b1d7d99d74f80558b7a60f" => :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+3" => :optional
|
|
depends_on "libssh2" => :optional
|
|
depends_on "libusb" => :optional
|
|
|
|
deprecated_option "with-sdl" => "with-sdl2"
|
|
deprecated_option "with-gtk+" => "with-gtk+3"
|
|
|
|
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+3")
|
|
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+3") ? "--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
|