51 lines
1.9 KiB
Ruby
51 lines
1.9 KiB
Ruby
class GitIf < Formula
|
|
desc "Glulx interpreter that is optimized for speed"
|
|
homepage "http://ifarchive.org/indexes/if-archiveXprogrammingXglulxXinterpretersXgit.html"
|
|
url "http://ifarchive.org/if-archive/programming/glulx/interpreters/git/git-135.zip"
|
|
version "1.3.5"
|
|
sha256 "4bdfae2e1ab085740efddf99d43ded6a044f1f2df274f753737e5f0e402fc4e9"
|
|
head "https://github.com/DavidKinder/Git.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "7c09116244a4c04a46337a0453d519523204233fc33d2d60c89c4b9469498380" => :sierra
|
|
sha256 "c38c41e66ca16a1ef9627112980fa49411b870c2438086db35f6dd9053f99850" => :el_capitan
|
|
sha256 "e727f112e350e8a12b87094715800e9c2abc03f2d45ad521c0d78e4c6bfff3ad" => :yosemite
|
|
end
|
|
|
|
option "with-glkterm", "Build with glkterm (without wide character support)"
|
|
|
|
depends_on "cheapglk" => [:build, :optional]
|
|
depends_on "glkterm" => [:build, :optional]
|
|
depends_on "glktermw" => :build if build.without?("cheapglk") && build.without?("glkterm")
|
|
|
|
def install
|
|
if build.with?("cheapglk") && build.with?("glkterm")
|
|
odie "Options --with-cheapglk and --with-glkterm are mutually exclusive."
|
|
end
|
|
|
|
if build.with? "cheapglk"
|
|
glk = Formula["cheapglk"]
|
|
elsif build.with? "glkterm"
|
|
glk = Formula["glkterm"]
|
|
else
|
|
glk = Formula["glktermw"]
|
|
end
|
|
|
|
inreplace "Makefile", "GLK = cheapglk", "GLK = #{glk.name}" if build.without? "cheapglk"
|
|
inreplace "Makefile", "GLKINCLUDEDIR = ../$(GLK)", "GLKINCLUDEDIR = #{glk.include}"
|
|
inreplace "Makefile", "GLKLIBDIR = ../$(GLK)", "GLKLIBDIR = #{glk.lib}"
|
|
inreplace "Makefile", /^OPTIONS = /, "OPTIONS = -DUSE_MMAP -DUSE_INLINE"
|
|
|
|
system "make"
|
|
bin.install "git" => "git-if"
|
|
end
|
|
|
|
test do
|
|
if build.with? "cheapglk"
|
|
assert shell_output("#{bin}/git-if").start_with? "usage: git gamefile.ulx"
|
|
else
|
|
assert pipe_output("#{bin}/git-if -v").start_with? "GlkTerm, library version"
|
|
end
|
|
end
|
|
end
|