diff options
| author | Anil Madhavapeddy | 2014-01-30 10:55:10 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-02-04 11:57:27 +0000 |
| commit | e541d53f47558acd6391c73e429d82eedf042479 (patch) | |
| tree | 5038ebe8e961f745bf2ddb2d4ae53f9f8524199a /Library/Formula | |
| parent | 65c39001c2a2cb5daff1b6df83bc40c72994be88 (diff) | |
| download | homebrew-e541d53f47558acd6391c73e429d82eedf042479.tar.bz2 | |
opam 1.1.1
Now depends on aspcud as a recommended dependency (#26070)
Closes #26282.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/opam.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/opam.rb b/Library/Formula/opam.rb index 8e7b91889..adb606b5f 100644 --- a/Library/Formula/opam.rb +++ b/Library/Formula/opam.rb @@ -2,15 +2,18 @@ require 'formula' class Opam < Formula homepage 'https://opam.ocaml.org' - url 'https://github.com/ocaml/opam/archive/1.1.0.tar.gz' - sha1 'fe66f5cfc9ffe9f621462e52e17cbb5869de419a' + url 'https://github.com/ocaml/opam/archive/1.1.1.tar.gz' + sha1 'f1a8291eb888bfae4476ee59984c9a30106cd483' head 'https://github.com/ocaml/opam.git' depends_on "objective-caml" + depends_on "aspcud" => :recommended def install ENV.deparallelize + # Set TERM to workaround bug in ocp-build (ocaml/opam#1038) + ENV["TERM"] = "dumb" system "./configure", "--prefix=#{prefix}" system "make" system "make", "install" |
