diff options
| -rw-r--r-- | Library/Formula/cowsay.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/cowsay.rb b/Library/Formula/cowsay.rb new file mode 100644 index 000000000..f18954159 --- /dev/null +++ b/Library/Formula/cowsay.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Cowsay <Formula +  url 'http://www.nog.net/~tony/warez/cowsay-3.03.tar.gz' +  homepage 'http://www.nog.net/~tony/warez/cowsay.shtml' +  md5 'b29169797359420dadb998079021a494' + +  aka 'cowthink' + +  def install +    system "/bin/sh", "install.sh", prefix +  end +end  | 
