aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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