blob: 3a11bb3e4aaa3e56e3f2416139a8abc1c608cf7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class Latex2html < Formula
homepage "http://ctan.uib.no/help/Catalogue/entries/latex2html.html"
url "http://ctan.uib.no/support/latex2html/latex2html-2012.tgz"
sha256 "36b4b633507dba19a356d4ec5c6c145b242406b2b47cbe44aabf5e7efa2aa16f"
bottle do
sha256 "a34ed6cad64be682a18ef461cf96e91bb41cdd5766256a5255b279870efc7c51" => :yosemite
sha256 "ec27b4810f54db343c84e5bc04a0a21369583f2d4d21286107cd409a70867662" => :mavericks
sha256 "1c3bddc6c88890740d7036cdcdbc8554b289312e00b15e0f98b1386af40dcff1" => :mountain_lion
end
depends_on "netpbm"
depends_on "ghostscript"
depends_on :tex => :optional
def install
system "./configure", "--prefix=#{prefix}",
"--without-mktexlsr",
"--with-texpath=#{share}/texmf/tex/latex/html"
system "make", "install"
end
end
|