homebrew-core/Formula/stone-soup.rb

82 lines
2.6 KiB
Ruby

class StoneSoup < Formula
desc "Dungeon Crawl Stone Soup: a roguelike game"
homepage "https://crawl.develz.org/"
url "https://github.com/crawl/crawl/archive/0.26.1.tar.gz"
sha256 "c8c6abbefa7f21383ea77cd017033050471e06c60ea4deebd033f5198bc39596"
license "GPL-2.0-or-later"
livecheck do
url "https://crawl.develz.org/download.htm"
regex(/Stable.*?>v?(\d+(?:\.\d+)+)</i)
end
bottle do
sha256 arm64_big_sur: "d136c116fe8948a031660fbe114cf7bf808312179d99f90d7edae96a82b5a503"
sha256 big_sur: "e9dc79251315b89b4c9b1fdc4f3a0b33cf3e386c7258f849b6ba4961aa668e61"
sha256 catalina: "620b9518a611c1496206fbf76a428ad41c471fb1d22d38430245a33e3036206e"
sha256 mojave: "b8b7913385df4b0930bd3dc4c046b1b8ed59c4ebad8cdc2a4dcbb9e2546d9565"
end
depends_on "pkg-config" => :build
depends_on "python@3.9" => :build
depends_on "lua@5.1"
depends_on "pcre"
depends_on "sqlite"
resource "PyYAML" do
url "https://files.pythonhosted.org/packages/a0/a4/d63f2d7597e1a4b55aa3b4d6c5b029991d3b824b5bd331af8d4ab1ed687d/PyYAML-5.4.1.tar.gz"
sha256 "607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"
end
def install
ENV.cxx11
ENV.prepend_path "PATH", Formula["python@3.9"].opt_libexec/"bin"
xy = Language::Python.major_minor_version "python3"
ENV.prepend_create_path "PYTHONPATH", buildpath/"vendor/lib/python#{xy}/site-packages"
resource("PyYAML").stage do
system "python3", *Language::Python.setup_install_args(buildpath/"vendor")
end
cd "crawl-ref/source" do
File.write("util/release_ver", version.to_s)
args = %W[
prefix=#{prefix}
DATADIR=data
NO_PKGCONFIG=
BUILD_ZLIB=
BUILD_SQLITE=
BUILD_FREETYPE=
BUILD_LIBPNG=
BUILD_LUA=
BUILD_SDL2=
BUILD_SDL2MIXER=
BUILD_SDL2IMAGE=
BUILD_PCRE=
USE_PCRE=y
]
# FSF GCC doesn't support the -rdynamic flag
args << "NO_RDYNAMIC=y" unless ENV.compiler == :clang
# The makefile has trouble locating the developer tools for
# CLT-only systems, so we set these manually. Reported upstream:
# https://crawl.develz.org/mantis/view.php?id=7625
#
# On 10.9, stone-soup will try to use xcrun and fail due to an empty
# DEVELOPER_DIR
devdir = MacOS::Xcode.prefix.to_s
devdir += "/" unless MacOS::Xcode.installed?
system "make", "install",
"DEVELOPER_DIR=#{devdir}", "SDKROOT=#{MacOS.sdk_path}",
"SDK_VER=#{MacOS.version}", *args
end
end
test do
output = shell_output("#{bin}/crawl --version")
assert_match "Crawl version #{version}", output
end
end