aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorTorkild U. Resheim2011-06-20 19:15:17 +0200
committerJack Nagel2011-10-28 17:26:11 -0500
commit9a6bd3473936175163a642e28f6ce0b8a659cf6d (patch)
treee537d9f82fe4572bf915b5bcdfdf76b6a7685e5e /Library/Formula
parent915555b72cd21696136ef959a2d0ac31e0157186 (diff)
downloadhomebrew-9a6bd3473936175163a642e28f6ce0b8a659cf6d.tar.bz2
New formula: latex2html
Closes #6104. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/latex2html.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/latex2html.rb b/Library/Formula/latex2html.rb
new file mode 100644
index 000000000..b36068bce
--- /dev/null
+++ b/Library/Formula/latex2html.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Latex2html < Formula
+ url 'http://ctan.uib.no/support/latex2html/latex2html-2008.tar.gz'
+ homepage 'http://ctan.uib.no/help/Catalogue/entries/latex2html.html'
+ md5 '275ab6cfa8ca9328446b7f40d8dc302e'
+ version '1.71'
+
+ depends_on 'netpbm'
+ depends_on 'ghostscript' => :optional
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--without-mktexlsr"
+ system "make install"
+ end
+end