3d81ceb3b3
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>
12 lines
295 B
Ruby
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
|