20 lines
708 B
Ruby
20 lines
708 B
Ruby
class Phoon < Formula
|
|
desc "Displays current or specified phase of the moon via ASCII art"
|
|
homepage "http://www.acme.com/software/phoon/"
|
|
url "http://www.acme.com/software/phoon/phoon_14Aug2014.tar.gz"
|
|
version "04A"
|
|
sha256 "bad9b5e37ccaf76a10391cc1fa4aff9654e54814be652b443853706db18ad7c1"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "d6f259769364eab6cacb4e45301f0ab8cd6edab369da99b4ecfbef7927791adc" => :yosemite
|
|
sha256 "378c1f09dcffbd0a0fd79cbcbe9a988d8505fa9b657fc803e6c0e5bb62545047" => :mavericks
|
|
sha256 "e6ddb6af5a0f4f1fe42ad4cb653434159fb9849d364fea7bb2e2784e7e0d8fa6" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "phoon"
|
|
man1.install "phoon.1"
|
|
end
|
|
end
|