homebrew-core/Formula/hevea.rb

30 lines
739 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Hevea < Formula
homepage "http://hevea.inria.fr/"
url "http://hevea.inria.fr/distri/hevea-2.22.tar.gz"
sha1 "16ddc99402940fe06b89723f7c4e5cb0c646d55f"
bottle do
2015-01-16 17:39:10 +00:00
sha1 "2daa0f13092e445e793fa56fa2cd81ea6a075be8" => :yosemite
sha1 "3d9169aa9c0390541e12c69dd953944258bd0c71" => :mavericks
sha1 "634a57604d5d4e3c9f69cf32f2c2135575683158" => :mountain_lion
end
depends_on "objective-caml"
depends_on "ghostscript" => :optional
def install
2014-09-21 05:01:06 +00:00
ENV["PREFIX"] = prefix
system "make"
2014-09-19 18:18:00 +00:00
system "make", "install"
end
test do
(testpath/"test.tex").write <<-EOS.undent
\\documentclass{article}
\\begin{document}
\\end{document}
EOS
system "#{bin}/hevea", "test.tex"
end
end