aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-08-12 00:43:54 -0500
committerJack Nagel2014-08-12 00:53:11 -0500
commit949d17c432a70409b120fe720e02be9d5eef5853 (patch)
treecd8435806b229354ab97eaa651ffae33a28c40fa /Library/Formula
parent756108c3cc1dbb49845f3b756bc7076d0d42a25a (diff)
downloadhomebrew-949d17c432a70409b120fe720e02be9d5eef5853.tar.bz2
hevea 2.16
Closes #31441.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/hevea.rb15
1 files changed, 7 insertions, 8 deletions
diff --git a/Library/Formula/hevea.rb b/Library/Formula/hevea.rb
index 164266bcb..3310b2c40 100644
--- a/Library/Formula/hevea.rb
+++ b/Library/Formula/hevea.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Hevea < Formula
- homepage 'http://hevea.inria.fr/'
- url "http://hevea.inria.fr/distri/hevea-2.14.tar.gz"
- sha1 "78152c83802e34881ce3414072d75bff66facb15"
+ homepage "http://hevea.inria.fr/"
+ url "http://hevea.inria.fr/distri/hevea-2.16.tar.gz"
+ sha1 "729438f4c37240df7b20053dec18e9ee17d19d46"
bottle do
sha1 "657486337d169647d9c10afb61516e38ae1bf772" => :mavericks
@@ -11,12 +11,11 @@ class Hevea < Formula
sha1 "4766e826da52e595f679c699c836bcfb141dfdbd" => :lion
end
- depends_on 'objective-caml'
- depends_on 'ghostscript' => :optional
+ depends_on "objective-caml"
+ depends_on "ghostscript" => :optional
def install
- inreplace 'Makefile', '/usr/local', prefix
system "make"
- system "make install"
+ system "make", "PREFIX=#{prefix}", "install"
end
end