blob: 5a782c705462e732354788c8d1075b17491c293f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | 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
 |