blob: b61e2439fa8b81f7e30c286d5007f73466c13aec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Whohas <Formula
  url 'http://www.philippwesche.org/200811/whohas/whohas-0.23.tar.gz'
  homepage 'http://www.philippwesche.org/200811/whohas/intro.html'
  md5 '0895fb6353950fe2e686fa867aaf0416'
  depends_on 'LWP::UserAgent' => :perl
  def install
    bin.install 'program/whohas'
    man1.install 'usr/share/man/man1/whohas.1'
    (share+'whohas').install 'intro.txt'
  end
end
  |