119 lines
5.1 KiB
Ruby
119 lines
5.1 KiB
Ruby
class Qemu < Formula
|
|
desc "Emulator for x86 and PowerPC"
|
|
homepage "https://www.qemu.org/"
|
|
url "https://download.qemu.org/qemu-5.2.0.tar.xz"
|
|
sha256 "cb18d889b628fbe637672b0326789d9b0e3b8027e0445b936537c78549df17bc"
|
|
license "GPL-2.0-only"
|
|
head "https://git.qemu.org/git/qemu.git"
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "87f301721d69b60e9088e4c60da5c905f887cbc504f31185ae663bfa36a11291"
|
|
sha256 big_sur: "a9d19e88aaaa1cbca0069e298f09b738b8a0a27157ce893ac322f3d6a24519bc"
|
|
sha256 catalina: "2443538eb765864a43207708b0f2eb80a601c4755952c9f3d9c7c85e1b07f2da"
|
|
sha256 mojave: "359f0bc3b9f605758f3e34819a69c310f855e8b7ddc5ba45c2f3f4c8cf884f19"
|
|
end
|
|
|
|
depends_on "libtool" => :build
|
|
depends_on "meson" => :build
|
|
depends_on "ninja" => :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 "nettle"
|
|
depends_on "pixman"
|
|
depends_on "snappy"
|
|
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
|
|
|
|
# remove in next release
|
|
patch do
|
|
url "https://git.qemu.org/?p=qemu.git;a=patch;h=0dbce6efb5ff2e7113734d3a0cabbf87fc56feec"
|
|
sha256 "8ced33c7f829216544b762d8db0f143dbea04fa5a1ce41b491bbd7808f64a944"
|
|
end
|
|
|
|
# remove in next release
|
|
patch do
|
|
url "https://git.qemu.org/?p=qemu.git;a=patch;h=cb7abd8319d19000b57ae6c5c474c2635db054c6"
|
|
sha256 "818ad42f0cb25ab5df37058e27d7f879e4389489f692da4404c1f15dde5b2c4d"
|
|
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
|
|
--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"
|
|
|
|
on_macos do
|
|
args << "--enable-cocoa"
|
|
end
|
|
|
|
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-aarch64 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-alpha --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-arm --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-cris --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-hppa --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-i386 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-m68k --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-microblaze --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-microblazeel --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-mips --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-mips64 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-mips64el --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-mipsel --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-moxie --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-nios2 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-or1k --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-ppc --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-ppc64 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-riscv32 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-riscv64 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-rx --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-s390x --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-sh4 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-sh4eb --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-sparc --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-sparc64 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-tricore --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-x86_64 --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-xtensa --version")
|
|
assert_match expected, shell_output("#{bin}/qemu-system-xtensaeb --version")
|
|
resource("test-image").stage testpath
|
|
assert_match "file format: raw", shell_output("#{bin}/qemu-img info FLOPPY.img")
|
|
end
|
|
end
|