aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bigloo.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-05-09 20:41:35 -0700
committerAdam Vandenberg2013-05-09 20:41:35 -0700
commit1fdab4904ff9d4d65609adf646354bcf36f77fb8 (patch)
tree929a48fcccfb3b77fe33c042f027da770e9cbf01 /Library/Formula/bigloo.rb
parent9a61d154442017911e7b95ac788316f647b5817a (diff)
downloadhomebrew-1fdab4904ff9d4d65609adf646354bcf36f77fb8.tar.bz2
Redact bigloo
Doesn't build with clang 425, and no one has noticed. There's also a newer version which hasn't been submitted. Closes #19632.
Diffstat (limited to 'Library/Formula/bigloo.rb')
-rw-r--r--Library/Formula/bigloo.rb39
1 files changed, 0 insertions, 39 deletions
diff --git a/Library/Formula/bigloo.rb b/Library/Formula/bigloo.rb
deleted file mode 100644
index 328d57fd4..000000000
--- a/Library/Formula/bigloo.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-require 'formula'
-
-class Bigloo < Formula
- homepage 'http://www-sop.inria.fr/indes/fp/Bigloo/'
- url 'ftp://ftp-sop.inria.fr/indes/fp/Bigloo/bigloo3.8c.tar.gz'
- version '3.8c'
- sha1 'e876e3f8dc5315aa61177721695e9c04b19f25d9'
-
- # libgmp seems to be required for 32-bit srfi 27 only, but include anyway
- depends_on 'gmp'
-
- fails_with :clang do
- build 421
- cause <<-EOS.undent
- objs/obj_u/Ieee/dtoa.c:262:79504: fatal error: parser
- recursion limit reached, program too complex
- EOS
- end
-
- def install
- args = [ "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--mandir=#{man1}", # This is correct for this brew
- "--infodir=#{info}",
- "--customgc=yes",
- "--os-macosx" ]
-
- # SRFI 27 is 32-bit only
- args << "--disable-srfi27" if MacOS.prefer_64_bit?
-
- system "./configure", *args
- system "make"
- system "make install"
-
- # Install the other manpages too
- manpages = %w( bgldepend bglmake bglpp bgltags bglafile bgljfile bglmco bglprof )
- manpages.each {|m| man1.install "manuals/#{m}.man" => "#{m}.1"}
- end
-end