homebrew-core/Formula/unittest.rb
Jack Nagel 89b2018d80 Update bare fails_with_llvm calls
These formulae all compile and run with LLVM build >= 2335.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-10-28 15:52:44 -05:00

14 lines
377 B
Ruby

require 'formula'
class Unittest < Formula
url 'http://unittest.red-bean.com/tar/unittest-0.50-62.tar.gz'
homepage 'http://unittest.red-bean.com/'
md5 'e77615162141b23a78adcda929d58d61'
fails_with_llvm :build => 2334
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end