88779ade49
Closes Homebrew/homebrew#14653.
15 lines
421 B
Ruby
15 lines
421 B
Ruby
require 'formula'
|
|
|
|
class Man2html < Formula
|
|
url 'http://www.oit.uci.edu/indiv/ehood/tar/man2html3.0.1.tar.gz'
|
|
homepage 'http://www.oac.uci.edu/indiv/ehood/man2html.html'
|
|
sha1 '18b617783ce59491db984d23d2b0c8061bff385c'
|
|
|
|
def install
|
|
bin.mkpath
|
|
man1.mkpath
|
|
system "/usr/bin/perl", "install.me", "-batch",
|
|
"-binpath", bin,
|
|
"-manpath", man
|
|
end
|
|
end
|