63 lines
2.4 KiB
Ruby
63 lines
2.4 KiB
Ruby
class RomTools < Formula
|
|
desc "Tools for Multiple Arcade Machine Emulator"
|
|
homepage "https://mamedev.org/"
|
|
url "https://github.com/mamedev/mame/archive/mame0216.tar.gz"
|
|
version "0.216"
|
|
sha256 "cc69e56ebbabbd6cf197d4910de0904f5709844a81f0117ce5d922f702429fc8"
|
|
head "https://github.com/mamedev/mame.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "8bc6497043bfa57144c2dea206449918236b382187012e067b1cfc80d468bb54" => :catalina
|
|
sha256 "cc193f1b57ef6daa1ff2f33b5d4e5140ee7454d3b900f3c51dd9e7fc30a5f7ae" => :mojave
|
|
sha256 "d00dfa62f18e09ab0c51bb1ffb64b4599ded97941f38b8b6b347a4322dd6c869" => :high_sierra
|
|
end
|
|
|
|
depends_on "asio" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "flac"
|
|
# 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 "sdl2"
|
|
depends_on "utf8proc"
|
|
|
|
def install
|
|
inreplace "scripts/src/osd/sdl.lua", "--static", ""
|
|
system "make", "TOOLS=1",
|
|
"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_UTF8PROC=1"
|
|
bin.install %w[
|
|
aueffectutil castool chdman floptool imgtool jedutil ldresample ldverify
|
|
nltool nlwav pngcmp regrep romcmp src2html srcclean testkeys unidasm
|
|
]
|
|
bin.install "split" => "rom-split"
|
|
man1.install Dir["docs/man/*.1"]
|
|
end
|
|
|
|
# Needs more comprehensive tests
|
|
test do
|
|
# system "#{bin}/aueffectutil" # segmentation fault
|
|
system "#{bin}/castool"
|
|
assert_match "chdman info", shell_output("#{bin}/chdman help info", 1)
|
|
system "#{bin}/floptool"
|
|
system "#{bin}/imgtool", "listformats"
|
|
system "#{bin}/jedutil", "-viewlist"
|
|
assert_match "linear equation", shell_output("#{bin}/ldresample 2>&1", 1)
|
|
assert_match "avifile.avi", shell_output("#{bin}/ldverify 2>&1", 1)
|
|
system "#{bin}/nltool", "--help"
|
|
system "#{bin}/nlwav", "--help"
|
|
assert_match "image1", shell_output("#{bin}/pngcmp 2>&1", 10)
|
|
assert_match "summary", shell_output("#{bin}/regrep 2>&1", 1)
|
|
system "#{bin}/romcmp"
|
|
system "#{bin}/rom-split"
|
|
assert_match "template", shell_output("#{bin}/src2html 2>&1", 1)
|
|
system "#{bin}/srcclean"
|
|
assert_match "architecture", shell_output("#{bin}/unidasm", 1)
|
|
end
|
|
end
|