aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hevea.rb
blob: 66b52f6ad5cbc79458a7722900e9416fa994605b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Hevea < Formula
  homepage 'http://hevea.inria.fr/'
  url 'http://hevea.inria.fr/distri/hevea-2.06.tar.gz'
  sha1 'dab9676ed99cedd2ec37c3e0d27ee87f3ea02b7d'

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

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