diff options
| author | Vladimir Pouzanov | 2013-06-09 19:05:50 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-09 12:57:02 -0700 |
| commit | b31f205a4168ae390437a35b365124357fa45b2f (patch) | |
| tree | f092fcd293884163887418e3c01c0e86cd9c5759 | |
| parent | 7973860c73f3014132655bb331e80e89e250c901 (diff) | |
| download | homebrew-b31f205a4168ae390437a35b365124357fa45b2f.tar.bz2 | |
cpputest 3.4
Closes #20370.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/cpputest.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/cpputest.rb b/Library/Formula/cpputest.rb index 0cac92e64..3197fd620 100644 --- a/Library/Formula/cpputest.rb +++ b/Library/Formula/cpputest.rb @@ -2,8 +2,8 @@ require 'formula' class Cpputest < Formula homepage 'http://www.cpputest.org/' - url 'http://sourceforge.net/projects/cpputest/files/cpputest/v3.1/CppUTest-v3.1.zip' - sha1 '8ff6b764a9ca6202582ae0c94545f56b921f39d5' + url 'https://github.com/cpputest/cpputest/archive/v3.4.tar.gz' + sha1 'ecd53f5b1a92a1f2291249ce69f544392f5a8462' fails_with :clang do build 425 @@ -11,8 +11,7 @@ class Cpputest < Formula end def install - system "make" - lib.install 'lib/libCppUTest.a' - include.install 'include/CppUTest' + system "./configure", "--prefix=#{prefix}" + system "make install" end end |
