42 lines
1.7 KiB
Ruby
42 lines
1.7 KiB
Ruby
class Xrick < Formula
|
|
desc "Clone of Rick Dangerous"
|
|
homepage "https://www.bigorno.net/xrick/"
|
|
url "https://www.bigorno.net/xrick/xrick-021212.tgz"
|
|
# There is a repo at https://github.com/zpqrtbnk/xrick but it is organized
|
|
# differently than the tarball
|
|
sha256 "aa8542120bec97a730258027a294bd16196eb8b3d66134483d085f698588fc2b"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 arm64_ventura: "2258cda0738068cd11a61450268da7eab0063a0f56b2c6444c1da26aee99c8c5"
|
|
sha256 arm64_monterey: "b97026a329519f349a0895a8d13f1bbd4b59fd10e5eaaed246bf2f98d99b5b49"
|
|
sha256 arm64_big_sur: "30b4c69fa6b25347123661e07a58e1ce0feb383533b7f5a0b997edd2ea804221"
|
|
sha256 ventura: "4a7e01c597d047100072ff734ac8f8bde2b343e2837b3255c4c8ee68ec0a8fcc"
|
|
sha256 monterey: "8bac12edddcd4707b5404c98f1e0d7af073154ffee46f3e4ddca9251a0e8ec26"
|
|
sha256 big_sur: "3f344cdf41f15e2b82d5ce3557db8e05cdafd6d9cc50b3f78a4ab67af4906e15"
|
|
sha256 catalina: "0834c07da50760edddf5263d5169bd27edeff0b5765795a535b637b14c823a59"
|
|
sha256 x86_64_linux: "1fe086e447b190cf83ff1440bf8bbc665537fab642551444a02d77d03e1505ac"
|
|
end
|
|
|
|
depends_on "sdl12-compat"
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
def install
|
|
# Work around failure from GCC 10+ using default of `-fno-common`:
|
|
# scr_xrick.o:(.data.rel.local+0x18): multiple definition of `IMG_SPLASH'
|
|
# Makefile override environment variables so we need to inreplace.
|
|
inreplace "Makefile", "echo \"CFLAGS=", "\\0-fcommon " if OS.linux?
|
|
|
|
inreplace "src/xrick.c", "data.zip", pkgshare/"data.zip"
|
|
system "make"
|
|
bin.install "xrick"
|
|
man6.install "xrick.6.gz"
|
|
pkgshare.install "data.zip"
|
|
end
|
|
|
|
test do
|
|
assert_match "xrick [version ##{version}]", shell_output("#{bin}/xrick --help", 1)
|
|
end
|
|
end
|