blob: b2d1a9cdf7daf89d2d9ff76e7a4ca950d92fb5fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Latex2html < Formula
homepage 'http://ctan.uib.no/help/Catalogue/entries/latex2html.html'
url 'http://ctan.uib.no/support/latex2html/latex2html-2008.tar.gz'
version '1.71'
sha1 '5e0aa47572e0c13a4c5da51e963d5496be3f86e7'
depends_on 'netpbm'
depends_on 'ghostscript' => :optional
def install
system "./configure", "--prefix=#{prefix}", "--without-mktexlsr"
system "make install"
end
end
|