15 lines
387 B
Ruby
15 lines
387 B
Ruby
require 'formula'
|
|
|
|
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_29jun2005.tar.gz'
|
|
version '03A'
|
|
sha1 'd646af184b83e1a4104fe82588daadae2938e08c'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install 'phoon'
|
|
man1.install 'phoon.1'
|
|
end
|
|
end
|