blob: b3e3cfa7fe50a271cfac42e7c059cda78da4c674 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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'
md5 '1c0d28c83225d0ebc845f2386c8f8384'
def install
bin.mkpath
man1.mkpath
system "/usr/bin/perl", "install.me", "-batch",
"-binpath", bin,
"-manpath", man
end
end
|