aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/opam.rb
diff options
context:
space:
mode:
authorAnil Madhavapeddy2012-10-03 10:14:18 -0700
committerAdam Vandenberg2012-10-03 10:20:38 -0700
commit0ae47db07f79c8be1f8faa68a3f727f3d6c000a2 (patch)
treeb78c0327a846e747e8fab071a73b2c86f7c52b35 /Library/Formula/opam.rb
parentda2f8525095900df9bef5f93bcadbedf4b65a5ba (diff)
downloadhomebrew-0ae47db07f79c8be1f8faa68a3f727f3d6c000a2.tar.bz2
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 <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/opam.rb')
-rw-r--r--Library/Formula/opam.rb17
1 files changed, 9 insertions, 8 deletions
diff --git a/Library/Formula/opam.rb b/Library/Formula/opam.rb
index 4c86f7e65..e43e50a2e 100644
--- a/Library/Formula/opam.rb
+++ b/Library/Formula/opam.rb
@@ -2,11 +2,10 @@ require 'formula'
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 @@ class Opam < Formula
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