homebrew-core/Formula/globe.rb

19 lines
474 B
Ruby
Raw Normal View History

class Globe < Formula
desc "Prints ASCII graphic of currently-lit side of the Earth"
homepage "http://www.acme.com/software/globe/"
url "http://www.acme.com/software/globe/globe_14Aug2014.tar.gz"
version "0.0.20140814"
sha256 "5507a4caaf3e3318fd895ab1f8edfa5887c9f64547cad70cff3249350caa6c86"
def install
bin.mkpath
man1.mkpath
system "make", "all", "install", "BINDIR=#{bin}", "MANDIR=#{man1}"
end
test do
system "#{bin}/globe"
end
end