homebrew-core/Formula/mame.rb

65 lines
2.1 KiB
Ruby
Raw Normal View History

2017-02-06 10:26:55 +00:00
class Mame < Formula
desc "Multiple Arcade Machine Emulator"
homepage "http://mamedev.org/"
url "https://github.com/mamedev/mame/archive/mame0188.tar.gz"
version "0.188"
sha256 "d3e55ec783fde39124bdb867ded9eadfcf769697d6c3d933444a29a785d6c99b"
revision 1
2017-02-06 10:26:55 +00:00
head "https://github.com/mamedev/mame.git"
bottle do
cellar :any
2017-07-26 06:08:19 +00:00
sha256 "2b39cd3ac3d30424842344b827b033b53fb2bbc658f9524a55affc1f1e60638a" => :sierra
sha256 "9d1b6c4447f0a05235cbf0f8ce51632e514aa16f2248d51c9126958426489374" => :el_capitan
sha256 "65a9b2b1cdff9ef79ec607f1c5463e053a06edd821eaf76832eb4aee7019ea65" => :yosemite
2017-02-06 10:26:55 +00:00
end
depends_on :macos => :yosemite
depends_on "pkg-config" => :build
depends_on "sphinx-doc" => :build
depends_on "sdl2"
2017-04-26 16:51:37 +00:00
depends_on "expat"
2017-02-06 10:26:55 +00:00
depends_on "jpeg"
depends_on "flac"
2017-04-26 16:51:37 +00:00
depends_on "sqlite"
2017-02-06 10:26:55 +00:00
depends_on "portmidi"
depends_on "portaudio"
2017-04-26 16:51:37 +00:00
depends_on "utf8proc"
2017-02-06 10:26:55 +00:00
2017-04-26 16:51:37 +00:00
# Needs compiler and library support C++14.
needs :cxx14
2017-02-06 10:26:55 +00:00
# jpeg 9 compatibility
patch do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/2b7053a/mame/jpeg9.patch"
sha256 "be8095e1b519f17ac4b9e6208f2d434e47346d8b4a8faf001b68749aac3efd20"
end
2017-02-06 10:26:55 +00:00
def install
inreplace "scripts/src/osd/sdl.lua", "--static", ""
system "make", "USE_LIBSDL=1",
2017-04-26 16:51:37 +00:00
"USE_SYSTEM_LIB_EXPAT=1",
2017-02-06 10:26:55 +00:00
"USE_SYSTEM_LIB_ZLIB=1",
"USE_SYSTEM_LIB_JPEG=1",
"USE_SYSTEM_LIB_FLAC=1",
2017-03-02 14:28:17 +00:00
"USE_SYSTEM_LIB_LUA=", # Homebrew's lua@5.3 can't build with MAME yet.
2017-04-26 16:51:37 +00:00
"USE_SYSTEM_LIB_SQLITE3=1",
2017-02-06 10:26:55 +00:00
"USE_SYSTEM_LIB_PORTMIDI=1",
2017-04-26 16:51:37 +00:00
"USE_SYSTEM_LIB_PORTAUDIO=1",
"USE_SYSTEM_LIB_UTF8PROC=1"
2017-02-06 10:26:55 +00:00
bin.install "mame64" => "mame"
cd "docs" do
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