diff options
| author | nibbles 2bits | 2012-09-05 08:50:40 -0700 | 
|---|---|---|
| committer | Jack Nagel | 2012-09-05 16:04:29 -0500 | 
| commit | 5307355b4250ea3f66d2d3a0a2fa24ad9fed0db9 (patch) | |
| tree | a739c2eb709bfeeb438ab4b8c7ac22112a3950d8 /Library/Formula/cpputest.rb | |
| parent | 2ca0b810cbf92dec7f8a4429aaeff4e20c95e275 (diff) | |
| download | homebrew-5307355b4250ea3f66d2d3a0a2fa24ad9fed0db9.tar.bz2 | |
cpputest 3.1
- Upgrade cpputest to version 3.1
- Add a fails with clang because it uses -lgcov
Closes #14739.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/cpputest.rb')
| -rw-r--r-- | Library/Formula/cpputest.rb | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/Library/Formula/cpputest.rb b/Library/Formula/cpputest.rb index 0c88b7bf4..ddc7d4ff9 100644 --- a/Library/Formula/cpputest.rb +++ b/Library/Formula/cpputest.rb @@ -2,8 +2,13 @@ require 'formula'  class Cpputest < Formula    homepage 'http://www.cpputest.org/' -  url 'http://downloads.sourceforge.net/project/cpputest/cpputest/v2.3/CppUTest-v2.3.zip' -  sha1 '0abd7abfbafdeaffcff6083fd8c3e20408bd0d5a' +  url 'http://sourceforge.net/projects/cpputest/files/cpputest/v3.1/CppUTest-v3.1.zip' +  sha1 '8ff6b764a9ca6202582ae0c94545f56b921f39d5' + +  fails_with :clang do +    build 421 +    cause 'Uses -lgcov which only comes with llvm or gcc' +  end    def install      system "make" | 
