67 lines
2.1 KiB
Ruby
67 lines
2.1 KiB
Ruby
class Qemu < Formula
|
|
desc "x86 and PowerPC Emulator"
|
|
homepage "https://www.qemu.org/"
|
|
url "https://download.qemu.org/qemu-4.1.0.tar.xz"
|
|
sha256 "656e60218689bdeec69903087fd7582d5d3e72238d02f4481d8dc6d79fd909c6"
|
|
head "https://git.qemu.org/git/qemu.git"
|
|
|
|
bottle do
|
|
sha256 "3b35079b1729b9b1bd58087794ccd9d40848b69d22a601c12b451791709298d6" => :mojave
|
|
sha256 "0ef458cc2c387f8bbb2bdbd0e4d6e2a21574eb735c1621ad8e0cd3e094288298" => :high_sierra
|
|
sha256 "68d05c70584e722c8109682ddc041a6271e0c36d102c7d3f55553ba3b4f39480" => :sierra
|
|
end
|
|
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "glib"
|
|
depends_on "gnutls"
|
|
depends_on "jpeg"
|
|
depends_on "libpng"
|
|
depends_on "libssh"
|
|
depends_on "libusb"
|
|
depends_on "lzo"
|
|
depends_on "ncurses"
|
|
depends_on "pixman"
|
|
depends_on "vde"
|
|
|
|
# 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
|
|
--enable-libssh
|
|
--enable-vde
|
|
--extra-cflags=-DNCURSES_WIDECHAR=1
|
|
--enable-cocoa
|
|
--disable-sdl
|
|
--disable-gtk
|
|
]
|
|
# Sharing Samba directories in QEMU requires the samba.org smbd which is
|
|
# incompatible with the macOS-provided version. This will lead to
|
|
# silent runtime failures, so we set it to a Homebrew path in order to
|
|
# obtain sensible runtime errors. This will also be compatible with
|
|
# Samba installations from external taps.
|
|
args << "--smbd=#{HOMEBREW_PREFIX}/sbin/samba-dot-org-smbd"
|
|
|
|
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
|