98 lines
3.6 KiB
Ruby
98 lines
3.6 KiB
Ruby
class Mame < Formula
|
|
desc "Multiple Arcade Machine Emulator"
|
|
homepage "https://mamedev.org/"
|
|
url "https://github.com/mamedev/mame/archive/mame0238.tar.gz"
|
|
version "0.238"
|
|
sha256 "13aa880b097832acf6cda43629f9253bcc8a340748db071028903358ffbe7faf"
|
|
license "GPL-2.0-or-later"
|
|
head "https://github.com/mamedev/mame.git", branch: "master"
|
|
|
|
# MAME tags (and filenames) are formatted like `mame0226`, so livecheck will
|
|
# report the version like `0226`. We work around this by matching the link
|
|
# text for the release title, since it contains the properly formatted version
|
|
# (e.g., 0.226).
|
|
livecheck do
|
|
url :stable
|
|
strategy :github_latest
|
|
regex(/>\s*MAME v?(\d+(?:\.\d+)+)/im)
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any, arm64_monterey: "dc8e67df3181ca0c8475bed1db264630bd68cb9e814141639b1560efb5f4f3a4"
|
|
sha256 cellar: :any, arm64_big_sur: "c219a007b5ba1149789bcc04a1997d1c26e02a7810f364dc083c4abaa82d345c"
|
|
sha256 cellar: :any, monterey: "81c8ed34daf47c25852dbbc1c279e5ce471cfbab7170645385d46fbb0ebfbbd7"
|
|
sha256 cellar: :any, big_sur: "ed562dffdd254adbd0f2e8a502f412b32a05a4f826fc7b3264468207dd0f9f90"
|
|
sha256 cellar: :any, catalina: "1a02a32dc8e72a18c9552db68d258f8ea1fdba7941051019b7206d9a029ab8f8"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "47cfda32dd1828cbb733bf1d68a79e43325e713c73771ce168ab027d4dd4c329"
|
|
end
|
|
|
|
depends_on "glm" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "python@3.10" => :build
|
|
depends_on "rapidjson" => :build
|
|
depends_on "sphinx-doc" => :build
|
|
depends_on "flac"
|
|
depends_on "jpeg"
|
|
# Need C++ compiler and standard library support C++17.
|
|
depends_on macos: :high_sierra
|
|
depends_on "portaudio"
|
|
depends_on "portmidi"
|
|
depends_on "pugixml"
|
|
depends_on "sdl2"
|
|
depends_on "sqlite"
|
|
depends_on "utf8proc"
|
|
|
|
uses_from_macos "expat"
|
|
uses_from_macos "zlib"
|
|
|
|
on_linux do
|
|
depends_on "gcc" # for C++17
|
|
depends_on "pulseaudio"
|
|
depends_on "qt@5"
|
|
depends_on "sdl2_ttf"
|
|
end
|
|
|
|
fails_with gcc: "5"
|
|
fails_with gcc: "6"
|
|
|
|
def install
|
|
# Cut sdl2-config's invalid option.
|
|
inreplace "scripts/src/osd/sdl.lua", "--static", ""
|
|
|
|
# Use bundled asio and lua instead of latest version.
|
|
# https://github.com/mamedev/mame/issues/5721
|
|
# https://github.com/mamedev/mame/issues/5349
|
|
system "make", "PYTHON_EXECUTABLE=#{Formula["python@3.10"].opt_bin}/python3",
|
|
"USE_LIBSDL=1",
|
|
"USE_SYSTEM_LIB_EXPAT=1",
|
|
"USE_SYSTEM_LIB_ZLIB=1",
|
|
"USE_SYSTEM_LIB_ASIO=",
|
|
"USE_SYSTEM_LIB_LUA=",
|
|
"USE_SYSTEM_LIB_FLAC=1",
|
|
"USE_SYSTEM_LIB_GLM=1",
|
|
"USE_SYSTEM_LIB_JPEG=1",
|
|
"USE_SYSTEM_LIB_PORTAUDIO=1",
|
|
"USE_SYSTEM_LIB_PORTMIDI=1",
|
|
"USE_SYSTEM_LIB_PUGIXML=1",
|
|
"USE_SYSTEM_LIB_RAPIDJSON=1",
|
|
"USE_SYSTEM_LIB_SQLITE3=1",
|
|
"USE_SYSTEM_LIB_UTF8PROC=1"
|
|
bin.install "mame"
|
|
cd "docs" do
|
|
# We don't convert SVG files into PDF files, don't load the related extensions.
|
|
inreplace "source/conf.py", "'sphinxcontrib.rsvgconverter',", ""
|
|
system "make", "text"
|
|
doc.install Dir["build/text/*"]
|
|
system "make", "man"
|
|
man1.install "build/man/MAME.1" => "mame.1"
|
|
end
|
|
pkgshare.install %w[artwork bgfx hash ini keymaps language plugins samples uismall.bdf]
|
|
end
|
|
|
|
test do
|
|
assert shell_output("#{bin}/mame -help").start_with? "MAME v#{version}"
|
|
system "#{bin}/mame", "-validate"
|
|
end
|
|
end
|