diff options
Diffstat (limited to 'Library/Formula/cpputest.rb')
| -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 |
