homebrew-core/Formula/zelda-roth-se.rb
2018-08-31 01:11:41 +01:00

38 lines
1.5 KiB
Ruby

class ZeldaRothSe < Formula
desc "Zelda Return of the Hylian SE"
homepage "http://www.solarus-games.org/games/zelda-return-of-the-hylian-se/"
head "https://github.com/christopho/zelda_roth_se.git"
stable do
url "https://github.com/christopho/zelda_roth_se/archive/v1.1.0.tar.gz"
sha256 "95baf3ce96372b1ce78d9af8ee9723840474ac8fc51e87eb54cc35777d68f5a8"
# Support SOLARUS_INSTALL_DATADIR variable for CMake
patch do
url "https://github.com/christopho/zelda_roth_se/commit/e9b5bd907f5b50b17d65ebe2fa50760d322c537c.diff?full_index=1"
sha256 "061b93efdd16c450f7c3483e690099d96280250b159336439ab0da0ad5c2e13d"
end
end
bottle do
cellar :any_skip_relocation
sha256 "b9f77d702fa6c412eec4b5d1c602ae1bc0ca05d01421d792110057bd79e53742" => :mojave
sha256 "8b76f5c62bca90258a3e0c3d930551befe9fdd0f0814d1f2026f32dae1027998" => :high_sierra
sha256 "2db05a8f1209a0f039c6bea92ffefb362d94497bc9f659e8057eca1539fc132e" => :sierra
sha256 "7aa852ad416766a72aad6b254f86f21a53bd67df29f20b7eaa612ba709f8c0cd" => :el_capitan
sha256 "069a42db0b88121a77233d3860a5191af80ad335270cc4723b1bb4ef1c48ccc3" => :yosemite
end
depends_on "cmake" => :build
depends_on "solarus"
def install
system "cmake", ".", *std_cmake_args, "-DSOLARUS_INSTALL_DATADIR=#{share}"
system "make", "install"
end
test do
system Formula["solarus"].bin/"solarus-run", "-help"
system "/usr/bin/unzip", share/"zelda_roth_se/data.solarus"
end
end