aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/latex-mk.rb
blob: b91c7b62d1db093d000e6ee9e86afdba4723ee98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'formula'

class TexInstalled < Requirement
  def message; <<-EOS.undent
    A TeX/LaTeX installation is required to install.
    You can obtain the TeX distribution for Mac OS X from:
        http://www.tug.org/mactex/
    EOS
  end
  def satisfied?
    which 'latex'
  end
  def fatal?
    true
  end
end

class LatexMk < Formula
  homepage 'http://latex-mk.sourceforge.net/index.html'
  url 'http://sourceforge.net/projects/latex-mk/files/latex-mk/latex-mk-2.1/latex-mk-2.1.tar.gz'
  sha1 '8460fd1f3c716e5759828c2a5af76eeafbce8d10'

  depends_on TexInstalled.new
  env :userpaths # To find TeX

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end