7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
15 lines
405 B
Ruby
15 lines
405 B
Ruby
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
|