From 0ae47db07f79c8be1f8faa68a3f727f3d6c000a2 Mon Sep 17 00:00:00 2001 From: Anil Madhavapeddy Date: Wed, 3 Oct 2012 10:14:18 -0700 Subject: [PATCH] opam 0.7.3 * remove dependency on wget, as curl works fine * improve help and point to OPAM documentation site Closes #15279. Signed-off-by: Adam Vandenberg --- Library/Formula/opam.rb | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Library/Formula/opam.rb b/Library/Formula/opam.rb index 4c86f7e657b8..e43e50a2e3d2 100644 --- a/Library/Formula/opam.rb +++ b/Library/Formula/opam.rb @@ -2,11 +2,10 @@ class Opam < Formula homepage 'https://github.com/OCamlPro/opam' - url 'https://github.com/OCamlPro/opam/tarball/0.7.2' - sha1 '7bf09bed5be8628ea853173bfca2e3b85190de65' + url 'https://github.com/OCamlPro/opam/tarball/0.7.3' + sha1 'ef2b8e8bb36d554315b56fd866688704577db053' depends_on "objective-caml" - depends_on "wget" def install system "./configure", "--prefix=#{prefix}" @@ -19,14 +18,16 @@ def test end def caveats; <<-EOS.undent - opam uses ~/.opam by default to install packages, you need to init package - database first by running: + OPAM uses ~/.opam by default to install packages, so you need to initialize + the package database first by running (as a normal user): - opam init + $ opam init - and add the following line to ~/.profile to initialize opam environment: + and add the following line to ~/.profile to initialize the environment: - eval `opam config -env` + $ eval `opam config -env` + + Documentation and tutorials are available at http://opam.ocamlpro.com EOS end end