blob: 18909a10ecf3cdfe9d1db4710ce072680d2de4a8 (
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 Hevea < Formula
  homepage "http://hevea.inria.fr/"
  url "http://hevea.inria.fr/distri/hevea-2.19.tar.gz"
  sha1 "59c0d35819c83b6558490b36f1113cdb4d49e919"
  bottle do
    sha1 "85895fc6d991f57fe1a0e9ecbc083d335c7cf704" => :yosemite
    sha1 "d45bb32ad08211b304ae6c87f49727505ad81d33" => :mavericks
    sha1 "85d66fad38057feaa11c615dfdd7be4c921baca5" => :mountain_lion
  end
  depends_on "objective-caml"
  depends_on "ghostscript" => :optional
  def install
    ENV["PREFIX"] = prefix
    system "make"
    system "make", "install"
  end
  test do
    (testpath/"test.tex").write <<-EOS.undent
      \\documentclass{article}
      \\begin{document}
      \\end{document}
    EOS
    system "#{bin}/hevea", "test.tex"
  end
end
  |