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/'
2013-04-22 01:33:16 +00:00
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