126 lines
5.2 KiB
Ruby
126 lines
5.2 KiB
Ruby
class Qemu < Formula
|
|
desc "Emulator for x86 and PowerPC"
|
|
homepage "https://www.qemu.org/"
|
|
url "https://download.qemu.org/qemu-7.2.0.tar.xz"
|
|
sha256 "5b49ce2687744dad494ae90a898c52204a3406e84d072482a1e1be854eeb2157"
|
|
license "GPL-2.0-only"
|
|
head "https://git.qemu.org/git/qemu.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 arm64_ventura: "fa987f9dc770812c58333c910cb0f5c4e730d513a1568cc4d6a215dfa3ac82d1"
|
|
sha256 arm64_monterey: "62bea721ff6fa3ee15ed53ee8215fea42b2cd07e8fb39b77ce8e39f30287576f"
|
|
sha256 arm64_big_sur: "9b2c3aa359719358370901d00a1b9323459ec9af3add371d212fd98071418e6b"
|
|
sha256 ventura: "b4ae1b25edf4276936ad69d9399cf117a28cd49e212b0467c4cb6c22a7074f86"
|
|
sha256 monterey: "6a32684edc7ed07358a8b9b602198d69a45902ec7c72230caf5c9b9b8b5e7f10"
|
|
sha256 big_sur: "c327dffc16102993ab7fb81a2bbad0035af6af3e550a4095db72fcb8aff56ae8"
|
|
sha256 x86_64_linux: "05ece9acbbb003a7e8035f18f5193ae7c9caffacd60a744eac629de4a545aea4"
|
|
end
|
|
|
|
depends_on "libtool" => :build
|
|
depends_on "meson" => :build
|
|
depends_on "ninja" => :build
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "capstone"
|
|
depends_on "glib"
|
|
depends_on "gnutls"
|
|
depends_on "jpeg-turbo"
|
|
depends_on "libpng"
|
|
depends_on "libslirp"
|
|
depends_on "libssh"
|
|
depends_on "libusb"
|
|
depends_on "lzo"
|
|
depends_on "ncurses"
|
|
depends_on "nettle"
|
|
depends_on "pixman"
|
|
depends_on "snappy"
|
|
depends_on "vde"
|
|
depends_on "zstd"
|
|
|
|
on_linux do
|
|
depends_on "attr"
|
|
depends_on "gtk+3"
|
|
depends_on "libcap-ng"
|
|
end
|
|
|
|
fails_with gcc: "5"
|
|
|
|
# 820KB floppy disk image file of FreeDOS 1.2, used to test QEMU
|
|
resource "homebrew-test-image" do
|
|
url "https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.2/official/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-slirp
|
|
--enable-capstone
|
|
--enable-curses
|
|
--enable-libssh
|
|
--enable-vde
|
|
--enable-virtfs
|
|
--enable-zstd
|
|
--extra-cflags=-DNCURSES_WIDECHAR=1
|
|
--disable-sdl
|
|
]
|
|
|
|
# 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"
|
|
|
|
args += if OS.mac?
|
|
["--disable-gtk", "--enable-cocoa"]
|
|
else
|
|
["--enable-gtk"]
|
|
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-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("homebrew-test-image").stage testpath
|
|
assert_match "file format: raw", shell_output("#{bin}/qemu-img info FLOPPY.img")
|
|
end
|
|
end
|