32 lines
1 KiB
Ruby
32 lines
1 KiB
Ruby
class Mednafen < Formula
|
|
desc "Multi-system emulator"
|
|
homepage "http://mednafen.fobby.net/"
|
|
url "https://mednafen.github.io/releases/files/mednafen-0.9.47.tar.xz"
|
|
sha256 "51137e60aeab070af8aba8ddc305834d2cf233be8ce82112cf38e93fe5329f3a"
|
|
|
|
bottle do
|
|
sha256 "4c4319c8991ef686a9d4145a79b9b772c3fb42d8e9b17733c03f0f3047bfb003" => :sierra
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "sdl"
|
|
depends_on "libsndfile"
|
|
depends_on :macos => :sierra # needs clock_gettime
|
|
depends_on "gettext"
|
|
|
|
def install
|
|
# Fix run-time crash "Assertion failed: (x == TestLLVM15470_Counter), function
|
|
# TestLLVM15470_Sub2, file tests.cpp, line 643."
|
|
# LLVM miscompiles some loop code with optimization
|
|
# https://llvm.org/bugs/show_bug.cgi?id=15470
|
|
ENV.O2
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
cmd = "#{bin}/mednafen -dump_modules_def M >/dev/null || head -n 1 M"
|
|
assert_equal version.to_s, shell_output(cmd).chomp
|
|
end
|
|
end
|