aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAnil Madhavapeddy2012-10-08 13:54:36 -0700
committerMike McQuaid2012-10-13 13:03:03 +0100
commit9c207d5988eaa212abc86cfa3c4dae01eb08b7e0 (patch)
tree6e9721d22acc6e0e7b9c948c818abec346870dd7 /Library/Formula
parent5b3d3ca8f3e31d60dcd39014cb276c80db0636f8 (diff)
downloadhomebrew-9c207d5988eaa212abc86cfa3c4dae01eb08b7e0.tar.bz2
objective-caml 4.00.1
* remove the patch (integrated upstream) * remove compiler-libs installation (also now standard with ocaml since 4.00.0) Closes #15359. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/objective-caml.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/Library/Formula/objective-caml.rb b/Library/Formula/objective-caml.rb
index 957f33a61..9332c1be6 100644
--- a/Library/Formula/objective-caml.rb
+++ b/Library/Formula/objective-caml.rb
@@ -2,18 +2,13 @@ require 'formula'
class ObjectiveCaml < Formula
homepage 'http://www.ocaml-lang.org'
- url 'http://caml.inria.fr/pub/distrib/ocaml-4.00/ocaml-4.00.0.tar.bz2'
- sha1 '22c0ae84c0049e75ec1577d5c1a26c293bb740b3'
+ url 'http://caml.inria.fr/pub/distrib/ocaml-4.00/ocaml-4.00.1.tar.bz2'
+ sha1 '10b8a4d0b88d20b003e3dd719f2ac9434e6a1042'
head 'http://caml.inria.fr/svn/ocaml/trunk', :using => :svn
depends_on :x11 if MacOS::X11.installed?
- # See http://caml.inria.fr/mantis/view.php?id=5700
- def patches
- "http://caml.inria.fr/mantis/file_download.php?file_id=722&type=bug"
- end
-
def install
system "./configure", "--prefix", HOMEBREW_PREFIX,
"--mandir", man,
@@ -24,7 +19,6 @@ class ObjectiveCaml < Formula
system "make opt"
system "make opt.opt"
system "make", "PREFIX=#{prefix}", "install"
- (lib/'ocaml/compiler-libs').install 'typing', 'parsing', 'utils'
# site-lib in the Cellar will be a symlink to the HOMEBREW_PREFIX location,
# which is mkpath'd by Keg#link when something installs into it