2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-08 08:38:38 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Unittest < Formula
|
2010-04-07 05:58:35 +00:00
|
|
|
url 'http://unittest.red-bean.com/tar/unittest-0.50-62.tar.gz'
|
|
|
|
homepage 'http://unittest.red-bean.com/'
|
2011-02-22 20:02:17 +00:00
|
|
|
md5 'e77615162141b23a78adcda929d58d61'
|
2009-09-08 08:38:38 +00:00
|
|
|
|
2011-10-28 20:29:31 +00:00
|
|
|
fails_with_llvm :build => 2334
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2009-09-08 08:38:38 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|