41 lines
1.5 KiB
Ruby
41 lines
1.5 KiB
Ruby
class Hatari < Formula
|
|
desc "Atari ST/STE/TT/Falcon emulator"
|
|
homepage "https://hatari.tuxfamily.org"
|
|
url "https://download.tuxfamily.org/hatari/2.0.0/hatari-2.0.0.tar.bz2"
|
|
sha256 "52a447a59b6979d55d1525f3c4a21ec013e4371354d6683ede71546c5e6da577"
|
|
head "https://hg.tuxfamily.org/mercurialroot/hatari/hatari", :using => :hg, :branch => "default"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "1a0dfc82688af52fb70c34a7b9f2b9cf81cbd5ca7c085f9130843b2af252c5af" => :sierra
|
|
sha256 "1fbd64ae48dfb33320c46ddb3d245aa5f1da00338cc5c08d4eefe7dacd649265" => :el_capitan
|
|
sha256 "5a46ec43c7564381a9716c58d5be431c897efc1a2b36a8b2797ee7db9b572061" => :yosemite
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "libpng"
|
|
depends_on "sdl2"
|
|
depends_on "portaudio"
|
|
|
|
# Download EmuTOS ROM image
|
|
resource "emutos" do
|
|
url "https://downloads.sourceforge.net/project/emutos/emutos/0.9.6/emutos-512k-0.9.6.zip"
|
|
sha256 "2c7d57cac6792d0c7e921f9655f224b039402283dd24c894b085c7b6e9a053a6"
|
|
end
|
|
|
|
def install
|
|
# Set .app bundle destination
|
|
inreplace "src/CMakeLists.txt", "/Applications", prefix
|
|
system "cmake", *std_cmake_args
|
|
system "make"
|
|
prefix.install "src/Hatari.app"
|
|
bin.write_exec_script "#{prefix}/Hatari.app/Contents/MacOS/hatari"
|
|
resource("emutos").stage do
|
|
(prefix/"Hatari.app/Contents/Resources").install "etos512k.img" => "tos.img"
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_match /Hatari v#{version} -/, shell_output("#{bin}/hatari -v", 1)
|
|
end
|
|
end
|