diff options
| author | Anil Madhavapeddy | 2013-11-08 07:37:28 -0800 |
|---|---|---|
| committer | Jack Nagel | 2013-11-11 12:27:03 -0600 |
| commit | 2411064293dc35cf17a3a78894b1f41273ba3b49 (patch) | |
| tree | c2b1dd652ca2ffeda77d426b25fc82599ce60d09 /Library | |
| parent | 96efd9d7e5794c5ef059c59473ff03bfc94d88bf (diff) | |
| download | homebrew-2411064293dc35cf17a3a78894b1f41273ba3b49.tar.bz2 | |
opam 1.1.0
Closes #24086.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/opam.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Library/Formula/opam.rb b/Library/Formula/opam.rb index 2fa27c059..8e7b91889 100644 --- a/Library/Formula/opam.rb +++ b/Library/Formula/opam.rb @@ -1,18 +1,19 @@ require 'formula' class Opam < Formula - homepage 'https://github.com/OCamlPro/opam' - url 'https://github.com/OCamlPro/opam/archive/1.0.0.tar.gz' - sha1 '5e126f71c7e0caff3b61a751ef09dd66892720ae' + homepage 'https://opam.ocaml.org' + url 'https://github.com/ocaml/opam/archive/1.1.0.tar.gz' + sha1 'fe66f5cfc9ffe9f621462e52e17cbb5869de419a' - head 'https://github.com/OCamlPro/opam.git' + head 'https://github.com/ocaml/opam.git' depends_on "objective-caml" def install + ENV.deparallelize system "./configure", "--prefix=#{prefix}" system "make" - system "make install" + system "make", "install" bash_completion.install "shell/opam_completion.sh" zsh_completion.install "shell/opam_completion_zsh.sh" @@ -36,7 +37,7 @@ class Opam < Formula * On Bash, add them to `~/.bash_profile`. * On Zsh, add them to `~/.zprofile` instead. - Documentation and tutorials are available at http://opam.ocamlpro.com, or + Documentation and tutorials are available at http://opam.ocaml.org, or via 'man opam' and 'opam --help'. EOS end |
