aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMartin Kühl2010-04-29 16:33:43 +0200
committerAdam Vandenberg2010-05-04 22:12:51 -0700
commit7ac54d8d72da7822a7a5d6d1c2a882bfa418d705 (patch)
tree80ec4ecde4eb36fbc544961846346778cf6f752f /Library/Formula
parent3e36d87c8a03ac6b3480d2670c6a8cd07855369d (diff)
downloadhomebrew-7ac54d8d72da7822a7a5d6d1c2a882bfa418d705.tar.bz2
New formula: man2html
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/man2html.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/man2html.rb b/Library/Formula/man2html.rb
new file mode 100644
index 000000000..055153f76
--- /dev/null
+++ b/Library/Formula/man2html.rb
@@ -0,0 +1,15 @@
+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