diff options
| author | Jordan Bracco | 2009-11-12 18:07:59 +0100 | 
|---|---|---|
| committer | Max Howell | 2009-12-05 15:58:18 +0000 | 
| commit | 9d6910119b3495f4c286bb886c99e87b9b34119a (patch) | |
| tree | 1a9ecad1c9c028f39e95b1b738050f173d4d1f6e | |
| parent | cb75642d08dacacbf07d4a56137fc444f72fe00f (diff) | |
| download | homebrew-9d6910119b3495f4c286bb886c99e87b9b34119a.tar.bz2 | |
Cowsay & Cowthink \o/
| -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  | 
