aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-25 07:52:05 -0700
committerAdam Vandenberg2014-05-25 09:47:46 -0700
commit291d7d08ddaa3fcab897769f562446550a20b8e1 (patch)
tree706396e1bd49356fc01e40984ebf653b4ad25cbc
parent65c093f3737e2811b9c4f365f968d5e910afba31 (diff)
downloadhomebrew-291d7d08ddaa3fcab897769f562446550a20b8e1.tar.bz2
camlp5: update homepage
-rw-r--r--Library/Formula/camlp5.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/camlp5.rb b/Library/Formula/camlp5.rb
index f3ef64eff..e62a17b82 100644
--- a/Library/Formula/camlp5.rb
+++ b/Library/Formula/camlp5.rb
@@ -1,16 +1,16 @@
-require 'formula'
+require "formula"
class Camlp5 < Formula
- homepage 'http://pauillac.inria.fr/~ddr/camlp5/'
- url 'http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-6.11.tgz'
- sha1 '4649a2850869d624182bfb5a02f60800ae35b935'
+ homepage "http://camlp5.gforge.inria.fr/"
+ url "http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-6.11.tgz"
+ sha1 "4649a2850869d624182bfb5a02f60800ae35b935"
- depends_on 'objective-caml'
+ depends_on "objective-caml"
- option 'strict', 'Compile in strict mode'
+ option "strict", "Compile in strict mode"
def install
- if build.include? 'strict'
+ if build.include? "strict"
strictness = "-strict"
else
strictness = "-transitional"
@@ -19,7 +19,7 @@ class Camlp5 < Formula
system "./configure", "-prefix", prefix, "-mandir", man, strictness
# this build fails if jobs are parallelized
ENV.deparallelize
- system "make world.opt"
- system "make install"
+ system "make", "world.opt"
+ system "make", "install"
end
end