89b2018d80
These formulae all compile and run with LLVM build >= 2335. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
377 B
Ruby
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
|