diff options
| author | Alexey Matveichev | 2013-08-04 01:06:54 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-08-05 11:03:06 -0700 | 
| commit | 7cea0479f1a15d4d4314084de01633f0fd13a0fd (patch) | |
| tree | dd58f54005bd41f5f56b4a938ca201d99069f7fa /Library/Formula/bigloo.rb | |
| parent | 6fb20549235c8844e8d2d0e046d7fa07eb47c17e (diff) | |
| download | homebrew-7cea0479f1a15d4d4314084de01633f0fd13a0fd.tar.bz2 | |
bigloo 4.0b
Added option for build without GMP
Closes #21660.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/bigloo.rb')
| -rw-r--r-- | Library/Formula/bigloo.rb | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Formula/bigloo.rb b/Library/Formula/bigloo.rb index 3b1cf3b16..7a3edf944 100644 --- a/Library/Formula/bigloo.rb +++ b/Library/Formula/bigloo.rb @@ -2,11 +2,11 @@ require 'formula'  class Bigloo < Formula    homepage 'http://www-sop.inria.fr/indes/fp/Bigloo/' -  url 'ftp://ftp-sop.inria.fr/indes/fp/Bigloo/bigloo4.0a.tar.gz' -  version '4.0a' -  sha1 '63e0e363a7900d9e7d02f63c50ba2079053ef2d1' +  url 'ftp://ftp-sop.inria.fr/indes/fp/Bigloo/bigloo4.0b.tar.gz' +  version '4.0b' +  sha1 '2c70863de59d1d92b63aee3f1ee2f39c6672e732' -  depends_on 'gmp' +  depends_on 'gmp' => :recommended    option 'with-jvm', 'Enable JVM support' @@ -31,7 +31,8 @@ class Bigloo < Formula              "--disable-mpg123",              "--disable-flac"] -    args << "--jvm=yes" if build.include? 'with-jvm' +    args << "--jvm=yes" if build.with? 'jvm' +    args << "--no-gmp" if build.without? "gmp"      # SRFI 27 is 32-bit only      args << "--disable-srfi27" if MacOS.prefer_64_bit?  | 
