diff options
| author | Johnathan Conley | 2014-06-01 15:29:36 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-06-01 16:36:35 -0500 |
| commit | 725f4efc509b996d5bd2f9c7f3ee6d8a37899ecf (patch) | |
| tree | 20df862e2988067e588e6bb78bd43da4feec9cdf /Library/Formula | |
| parent | 208d104714600d38e199c8fade023282306beb56 (diff) | |
| download | homebrew-725f4efc509b996d5bd2f9c7f3ee6d8a37899ecf.tar.bz2 | |
orpie 1.5.2
- remove OCAMLOPT (builds without)
- remove unsupported config opts
Closes #29755.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/orpie.rb | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/Library/Formula/orpie.rb b/Library/Formula/orpie.rb index a4fc3be06..7571bad1a 100644 --- a/Library/Formula/orpie.rb +++ b/Library/Formula/orpie.rb @@ -2,22 +2,16 @@ require 'formula' class Orpie < Formula homepage 'http://pessimization.com/software/orpie/' - url 'http://pessimization.com/software/orpie/orpie-1.5.1.tar.gz' - sha1 '4e4887d8abcf015a5b423a2d1164ace95ab2d5c1' + url "http://pessimization.com/software/orpie/orpie-1.5.2.tar.gz" + sha1 "9786df20fb272fd36f87868bed04cab504602282" depends_on 'gsl' depends_on 'objective-caml' def install - # OCAMLOPT=/usr/bin/false prevents configure from finding ocaml.opt - # so orpie is built and runs as bytecode otherwise the build - # fails with "undefined symbol" errors. - # This mechanism still works if /usr/bin/false doesn't exist, - # although the build output will be uglier in that scenario. - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--mandir=#{man}", - "OCAMLOPT=/usr/bin/false" + ENV.deparallelize + system "./configure", "--prefix=#{prefix}", + "--mandir=#{man}" system "make" system "make install" end |
