5c7cde1794
Changed the download version and SHA Closes Homebrew/homebrew#22027. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
369 B
Ruby
16 lines
369 B
Ruby
require 'formula'
|
|
|
|
class Hevea < Formula
|
|
homepage 'http://hevea.inria.fr/'
|
|
url 'http://hevea.inria.fr/distri/hevea-2.09.tar.gz'
|
|
sha1 '7186fccfe84611680a6451fcb9c9d78130f3adf2'
|
|
|
|
depends_on 'objective-caml'
|
|
depends_on 'ghostscript' => :optional
|
|
|
|
def install
|
|
inreplace 'Makefile', '/usr/local', prefix
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|