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
415 B
Ruby
15 lines
415 B
Ruby
require 'formula'
|
|
|
|
class Man2html <Formula
|
|
url 'http://hydra.nac.uci.edu/indiv/ehood/tar/man2html3.0.1.tar.gz'
|
|
homepage 'http://hydra.nac.uci.edu/indiv/ehood/man2html.html'
|
|
md5 '1c0d28c83225d0ebc845f2386c8f8384'
|
|
|
|
def install
|
|
bin.mkpath
|
|
man1.mkpath
|
|
system "/usr/bin/perl", "install.me", "-batch",
|
|
"-binpath", bin,
|
|
"-manpath", man
|
|
end
|
|
end
|