82 lines
2.6 KiB
Ruby
82 lines
2.6 KiB
Ruby
class Brogue < Formula
|
|
desc "Roguelike game"
|
|
homepage "https://sites.google.com/site/broguegame/"
|
|
# The OS X version doesn't contain a Makefile, so we
|
|
# need to download the Linux version
|
|
url "https://sites.google.com/site/broguegame/brogue-1.7.4-linux-amd64.tbz2"
|
|
version "1.7.4"
|
|
sha256 "eba5f35fe317efad9c97876f117eaf7a26956c435fdd2bc1a5989f0a4f70cfd3"
|
|
|
|
bottle do
|
|
sha256 "cf93101e6920d496966fb6ecc9e2bdfbb48e4de57259a64e31c2e82f732d2ca4" => :sierra
|
|
sha256 "7470afc3d1235a9c1dd6ef89ba6a7e72d5e3e0e3e18b19ffe62064813834ae90" => :el_capitan
|
|
sha256 "b860adf0b0d376f61c478d7c936e4f3078dc5203054093fe129555aa5e2fc431" => :yosemite
|
|
end
|
|
|
|
# put the highscores file in HOMEBREW_PREFIX/var/brogue/ instead of a
|
|
# version-dependent location.
|
|
patch :DATA
|
|
|
|
def install
|
|
(var/"brogue").mkpath
|
|
|
|
doc.install "Readme.rtf" => "README.rtf"
|
|
doc.install "agpl.txt" => "COPYING"
|
|
|
|
system "make", "clean", "curses"
|
|
|
|
# The files are installed in libexec
|
|
# and the provided `brogue` shell script,
|
|
# which is just a convenient way to launch the game,
|
|
# is placed in the `bin` directory.
|
|
inreplace "brogue", %r{`dirname \$0`/bin$}, libexec
|
|
bin.install "brogue"
|
|
libexec.install "bin/brogue", "bin/keymap"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
If you are upgrading from 1.7.2, you need to copy your highscores file:
|
|
cp #{HOMEBREW_PREFIX}/Cellar/#{name}/1.7.2/BrogueHighScores.txt #{var}/brogue/
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/brogue", "--version"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- a/src/platform/platformdependent.c 2013-10-08 21:53:15.000000000 +0200
|
|
+++ b/src/platform/platformdependent.c 2013-10-08 21:55:22.000000000 +0200
|
|
@@ -75,7 +75,7 @@
|
|
short i;
|
|
FILE *scoresFile;
|
|
|
|
- scoresFile = fopen("BrogueHighScores.txt", "w");
|
|
+ scoresFile = fopen("HOMEBREW_PREFIX/var/brogue/BrogueHighScores.txt", "w");
|
|
for (i=0; i<HIGH_SCORES_COUNT; i++) {
|
|
fprintf(scoresFile, "%li\t%li\t%s", (long) 0, (long) 0, "(empty entry)\n");
|
|
}
|
|
@@ -128,11 +128,11 @@
|
|
time_t rawtime;
|
|
struct tm * timeinfo;
|
|
|
|
- scoresFile = fopen("BrogueHighScores.txt", "r");
|
|
+ scoresFile = fopen("HOMEBREW_PREFIX/var/brogue/BrogueHighScores.txt", "r");
|
|
|
|
if (scoresFile == NULL) {
|
|
initScores();
|
|
- scoresFile = fopen("BrogueHighScores.txt", "r");
|
|
+ scoresFile = fopen("HOMEBREW_PREFIX/var/brogue/BrogueHighScores.txt", "r");
|
|
}
|
|
|
|
for (i=0; i<HIGH_SCORES_COUNT; i++) {
|
|
@@ -197,7 +197,7 @@
|
|
short i;
|
|
FILE *scoresFile;
|
|
|
|
- scoresFile = fopen("BrogueHighScores.txt", "w");
|
|
+ scoresFile = fopen("HOMEBREW_PREFIX/var/brogue/BrogueHighScores.txt", "w");
|
|
|
|
for (i=0; i<HIGH_SCORES_COUNT; i++) {
|
|
// save the entry
|