blob: 7b837ec124c43f165fe04d26e872a19cf4932c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'
def install
fails_with_llvm
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|