homebrew-core/Formula/hevea.rb
Dan Lazewatsky 2d3ef1327b hevea 2.04
tarball for 2.00 disappeared

Closes Homebrew/homebrew#18498.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-15 09:42:48 -07:00

16 lines
369 B
Ruby

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