homebrew-core/Formula/dgen.rb

50 lines
1.5 KiB
Ruby

class Dgen < Formula
desc "Sega Genesis / Mega Drive emulator"
homepage "https://dgen.sourceforge.io/"
url "https://downloads.sourceforge.net/project/dgen/dgen/1.33/dgen-sdl-1.33.tar.gz"
sha256 "99e2c06017c22873c77f88186ebcc09867244eb6e042c763bb094b02b8def61e"
bottle do
cellar :any
sha256 "bac08b08f7cfb9c108ccf0bfe2d4623324e5038f01e508c1fb5da6b3c4d58dff" => :high_sierra
sha256 "50383807ec76387aa156cf6157ea537465bf20ad35e4e9eddda7d34685ded635" => :sierra
sha256 "ebcab68ba8d0aa9c6aacae94d43a67ce016dcdd219c5770c3b7d6d9c3590ef9f" => :el_capitan
sha256 "53f1fc72dbaab000eae45e143ca46a054a6ff655f91190d6aa30e71e8e505494" => :yosemite
end
head do
url "https://git.code.sf.net/p/dgen/dgen.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
end
option "with-docs", "Build documentation"
option "with-debugger", "Enable debugger"
depends_on "sdl"
depends_on "libarchive"
depends_on "doxygen" if build.with? "docs"
def install
args = %W[
--disable-silent-rules
--disable-dependency-tracking
--disable-sdltest
--prefix=#{prefix}
]
args << "--enable-debugger" if build.with? "debugger"
system "./autogen.sh" if build.head?
system "./configure", *args
system "make", "install"
end
def caveats; <<~EOS
If some keyboard inputs do not work, try modifying configuration:
~/.dgen/dgenrc
EOS
end
test do
assert_equal "DGen/SDL version #{version}", shell_output("#{bin}/dgen -v").chomp
end
end