diff options
| author | Dominyk Tiller | 2015-04-20 18:19:11 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2015-04-20 19:01:31 +0100 | 
| commit | 044e215fbec61c01e02f42369b89623204a583e6 (patch) | |
| tree | 13dd9839c2863b19a0903af2a7ffbbe94cde9d5f | |
| parent | 3b725112b4e5ee79614690a8b4619b80392738de (diff) | |
| download | homebrew-044e215fbec61c01e02f42369b89623204a583e6.tar.bz2 | |
latex2html: make tex optional
Re https://github.com/Homebrew/homebrew/pull/38855#issuecomment-94504628
Closes #38863.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/latex2html.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/latex2html.rb b/Library/Formula/latex2html.rb index 46ac60076..06c4f0d6e 100644 --- a/Library/Formula/latex2html.rb +++ b/Library/Formula/latex2html.rb @@ -1,11 +1,11 @@  class Latex2html < Formula    homepage "http://ctan.uib.no/help/Catalogue/entries/latex2html.html"    url "http://ctan.uib.no/support/latex2html/latex2html-2012.tgz" -  sha1 "54b42d3fb812b0bf3d25bbde7e0ea2daf84e69ff" +  sha256 "36b4b633507dba19a356d4ec5c6c145b242406b2b47cbe44aabf5e7efa2aa16f"    depends_on "netpbm"    depends_on "ghostscript" -  depends_on :tex +  depends_on :tex => :optional    def install      system "./configure", "--prefix=#{prefix}",  | 
