aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hevea.rb
blob: 164266bcb9374dfe4016c5d3f779e1294b3d941b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class Hevea < Formula
  homepage 'http://hevea.inria.fr/'
  url "http://hevea.inria.fr/distri/hevea-2.14.tar.gz"
  sha1 "78152c83802e34881ce3414072d75bff66facb15"

  bottle do
    sha1 "657486337d169647d9c10afb61516e38ae1bf772" => :mavericks
    sha1 "0e1fe3dd6b1b21fbf435738f329473c1e6130e38" => :mountain_lion
    sha1 "4766e826da52e595f679c699c836bcfb141dfdbd" => :lion
  end

  depends_on 'objective-caml'
  depends_on 'ghostscript' => :optional

  def install
    inreplace 'Makefile', '/usr/local', prefix
    system "make"
    system "make install"
  end
end