homebrew-core/Formula/bdw-gc.rb
nibbles 2bits cb876e7022 bdw-gc 7.2d
Upgrade bdw-gc to version 7.2d.  It passes make check on 10.8
using clang and llvm from XCode-4.4.1. Remove the `fails_with`.

Fixes Homebrew/homebrew#13940.
Closes Homebrew/homebrew#14259.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-17 12:16:03 -05:00

20 lines
586 B
Ruby

require 'formula'
class BdwGc < Formula
homepage 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/'
url 'http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2d.tar.gz'
sha1 'b43573800e27361da78f05a2e98394521cfa04fc'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-cplusplus"
system "make"
system "make check"
system "make install"
end
end