homebrew-core/Formula/hevea.rb

20 lines
388 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Hevea < Formula
homepage 'http://hevea.inria.fr/'
2014-05-09 19:47:21 +00:00
url "http://hevea.inria.fr/distri/hevea-2.14.tar.gz"
sha1 "78152c83802e34881ce3414072d75bff66facb15"
bottle do
end
depends_on 'objective-caml'
depends_on 'ghostscript' => :optional
def install
inreplace 'Makefile', '/usr/local', prefix
system "make"
system "make install"
end
end