blob: 59b87d24a7ec0f01ee922520f4cc810830812510 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
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
    FileUtils.mv prefix+'man', share
  end
end
  |