homebrew-core/Formula/hevea.rb
Tilman Potthof 1e10180e1a HEVEA 2.12
Closes Homebrew/homebrew#26085.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-21 17:41:55 -08:00

16 lines
369 B
Ruby

require 'formula'
class Hevea < Formula
homepage 'http://hevea.inria.fr/'
url 'http://hevea.inria.fr/distri/hevea-2.12.tar.gz'
sha1 '21ca8c366a3fd1030b3cfba3cd2aa16e6baf5c56'
depends_on 'objective-caml'
depends_on 'ghostscript' => :optional
def install
inreplace 'Makefile', '/usr/local', prefix
system "make"
system "make install"
end
end