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

class Hevea < Formula
  url 'http://hevea.inria.fr/distri/hevea-1.10.tar.gz'
  homepage 'http://hevea.inria.fr/'
  md5 '24a631570bee3cc4b8350e9db39be62b'

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

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