homebrew-core/Formula/cpputest.rb
Bas Vodde 3d81ceb3b3 cpputest: no longer fails_with :clang
Because configure checks this and no -lgcov is used anymore in 3.4

Closes Homebrew/homebrew#20467.

Signed-off-by: Samuel John <github@SamuelJohn.de>
2013-06-13 15:28:29 +02:00

12 lines
295 B
Ruby

require 'formula'
class Cpputest < Formula
homepage 'http://www.cpputest.org/'
url 'https://github.com/cpputest/cpputest/archive/v3.4.tar.gz'
sha1 'ecd53f5b1a92a1f2291249ce69f544392f5a8462'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end