2011-06-20 17:15:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Latex2html < Formula
|
2013-06-04 04:06:11 +00:00
|
|
|
homepage 'http://ctan.uib.no/help/Catalogue/entries/latex2html.html'
|
|
|
|
url 'http://ctan.uib.no/support/latex2html/latex2html-2012.tgz'
|
|
|
|
sha1 '54b42d3fb812b0bf3d25bbde7e0ea2daf84e69ff'
|
2011-06-20 17:15:17 +00:00
|
|
|
|
2013-06-04 04:06:11 +00:00
|
|
|
depends_on 'netpbm'
|
|
|
|
depends_on 'ghostscript' => :optional
|
2013-06-04 17:25:05 +00:00
|
|
|
depends_on :tex => :recommended
|
2011-06-20 17:15:17 +00:00
|
|
|
|
2013-06-04 04:06:11 +00:00
|
|
|
def install
|
2014-03-05 05:14:23 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--without-mktexlsr",
|
|
|
|
"--with-texpath=#{share}/texmf/tex/latex/html"
|
2013-06-04 04:06:11 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-06-20 17:15:17 +00:00
|
|
|
end
|