homebrew-core/Formula/wumpus.rb
2017-02-08 10:12:08 +00:00

34 lines
1.2 KiB
Ruby

class Wumpus < Formula
desc "Exact clone of the ancient BASIC Hunt the Wumpus game"
homepage "http://www.catb.org/~esr/wumpus/"
url "http://www.catb.org/~esr/wumpus/wumpus-1.6.tar.gz"
sha256 "965e49b3e53f44023994b42b3aa568ad79d3a2287bb0a07460b601500c9ae16d"
bottle do
cellar :any
sha256 "d3b2684fa7a1a7a9c676bc0f7d635ed3913f6734c7810f0c6fa234044ca9a147" => :yosemite
sha256 "cb277b7dab8ca78ea627f80a9596807b7cd5e8bbba389d0117b4a743bdfdaacf" => :mavericks
sha256 "c92ce6674f45ee484435cfd5746b4c6ae80d8ced9a5901e254b7e5bacadc8726" => :mountain_lion
end
# Patches to allow `make install` to specify a prefix; both patches
# can be removed in the next release
patch do
url "https://gitlab.com/esr/wumpus/commit/ea272d4786a55dbaa493d016324b7a05b4f165b9.diff"
sha256 "9a6d625e10425674329f14c625dba43b78b66c8137d356453d021e6c39ec339b"
end
patch do
url "https://gitlab.com/esr/wumpus/commit/99022db86e54c3338d6a670f219a0845fd531530.diff"
sha256 "72e40a834eb87e8deef51e8f064c50d93880e85ff9904a50be6b7c85052cc157"
end
def install
system "make"
system "make", "prefix=#{prefix}", "install"
end
test do
assert_match("HUNT THE WUMPUS",
pipe_output(bin/"wumpus", "^C"))
end
end