12 lines
292 B
Ruby
12 lines
292 B
Ruby
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'
|
|
|
|
def install
|
|
system "/bin/sh", "install.sh", prefix
|
|
mv prefix+'man', share
|
|
end
|
|
end
|