72 lines
2.6 KiB
Ruby
72 lines
2.6 KiB
Ruby
class Mame < Formula
|
|
desc "Multiple Arcade Machine Emulator"
|
|
homepage "https://mamedev.org/"
|
|
url "https://github.com/mamedev/mame/archive/mame0210.tar.gz"
|
|
version "0.210"
|
|
sha256 "4d0b23f3c9f9b2f6283ed78d5afc9a6391d2ee6ce5f0f4bcc2a357ec14aa06c4"
|
|
head "https://github.com/mamedev/mame.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "bd6e2e4c3ff6ff4bb61f85cb1496a15f45b671acbf2dc3d0d5bfbfef511423e2" => :mojave
|
|
sha256 "081ab454d5806d1c99e75ea00897f4c2eef134bfcee340c6ec247d1356e3d48a" => :high_sierra
|
|
end
|
|
|
|
depends_on "asio" => :build
|
|
depends_on "glm" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "pugixml" => :build
|
|
depends_on "rapidjson" => :build
|
|
depends_on "sphinx-doc" => :build
|
|
depends_on "flac"
|
|
depends_on "jpeg"
|
|
depends_on "lua"
|
|
# Need C++ compiler and standard library support C++14.
|
|
# Build failure on Sierra, see:
|
|
# https://github.com/Homebrew/homebrew-core/pull/39388
|
|
depends_on :macos => :high_sierra
|
|
depends_on "portaudio"
|
|
depends_on "portmidi"
|
|
depends_on "sdl2"
|
|
depends_on "sqlite"
|
|
depends_on "utf8proc"
|
|
|
|
def install
|
|
inreplace "scripts/src/osd/sdl.lua", "--static", ""
|
|
|
|
# Mame's build system genie can't find headers and libraries with version suffix.
|
|
ENV.append "CPPFLAGS", "-I#{Formula["lua"].opt_include}/lua"
|
|
ENV.append "CPPFLAGS", "-I#{Formula["pugixml"].opt_include}/pugixml-1.9"
|
|
ENV.append "LDFLAGS", "-L#{Formula["pugixml"].opt_lib}/pugixml-1.9"
|
|
|
|
system "make", "USE_LIBSDL=1",
|
|
"USE_SYSTEM_LIB_EXPAT=1",
|
|
"USE_SYSTEM_LIB_ZLIB=1",
|
|
"USE_SYSTEM_LIB_ASIO=1",
|
|
"USE_SYSTEM_LIB_FLAC=1",
|
|
"USE_SYSTEM_LIB_GLM=1",
|
|
"USE_SYSTEM_LIB_JPEG=1",
|
|
"USE_SYSTEM_LIB_LUA=1",
|
|
"USE_SYSTEM_LIB_PORTMIDI=1",
|
|
"USE_SYSTEM_LIB_PORTAUDIO=1",
|
|
"USE_SYSTEM_LIB_PUGIXML=1",
|
|
"USE_SYSTEM_LIB_RAPIDJSON=1",
|
|
"USE_SYSTEM_LIB_SQLITE3=1",
|
|
"USE_SYSTEM_LIB_UTF8PROC=1"
|
|
bin.install "mame64" => "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 plugins samples uismall.bdf]
|
|
end
|
|
|
|
test do
|
|
assert shell_output("#{bin}/mame -help").start_with? "MAME v#{version}"
|
|
system "#{bin}/mame", "-validate"
|
|
end
|
|
end
|