homebrew-core/Formula/hevea.rb

17 lines
369 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Hevea < Formula
homepage 'http://hevea.inria.fr/'
2012-09-04 00:53:33 +00:00
url 'http://hevea.inria.fr/distri/hevea-2.00.tar.gz'
sha1 '3de1c2e32f125c305d902fb1c066facc939405a2'
depends_on 'objective-caml'
depends_on 'ghostscript' => :optional
def install
inreplace 'Makefile', '/usr/local', prefix
system "make"
system "make install"
end
end