aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJelle Schühmacher2010-06-09 17:06:07 +0200
committerAdam Vandenberg2010-06-09 14:31:10 -0700
commit7c6da32c17e59e38ab68434cfb94c792266d9b6f (patch)
tree665f4d511b9f6e4c85491bbac32d33710c155370 /Library
parentc8e76dcc7b440616a2cfd9581145af41e875cc0e (diff)
downloadhomebrew-7c6da32c17e59e38ab68434cfb94c792266d9b6f.tar.bz2
New formula: HeVeA
HEVEA is a quite complete and fast LATEX to HTML translator. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/hevea.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/hevea.rb b/Library/Formula/hevea.rb
new file mode 100644
index 000000000..7b79c7afe
--- /dev/null
+++ b/Library/Formula/hevea.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Hevea <Formula
+ url 'http://hevea.inria.fr/distri/hevea-1.10.tar.gz'
+ homepage 'http://hevea.inria.fr/'
+ md5 '24a631570bee3cc4b8350e9db39be62b'
+
+ depends_on 'objective-caml'
+ depends_on 'ghostscript' => :optional
+
+ def install
+ inreplace 'Makefile', '/usr/local', "#{prefix}"
+ system "make"
+ system "make install"
+ end
+end