New formula: latex2html

Closes Homebrew/homebrew#6104.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Torkild U. Resheim 2011-06-20 19:15:17 +02:00 committed by Jack Nagel
parent 7f379ed5e4
commit 27815a2f02
1 changed files with 16 additions and 0 deletions

16
Formula/latex2html.rb Normal file
View File

@ -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