diff options
| -rw-r--r-- | Library/Formula/cpputest.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/cpputest.rb b/Library/Formula/cpputest.rb index 200a49fe9..ec5ba89cf 100644 --- a/Library/Formula/cpputest.rb +++ b/Library/Formula/cpputest.rb @@ -1,13 +1,13 @@ require 'formula' class Cpputest < Formula - url 'http://downloads.sourceforge.net/project/cpputest/cpputest/v2.3/CppUTest-v2.3.zip' homepage 'http://www.cpputest.org/' + url 'http://downloads.sourceforge.net/project/cpputest/cpputest/v2.3/CppUTest-v2.3.zip' md5 '0546bf6d0f1513842cfa781255dcbdda' def install system "make" - lib.install ['lib/libCppUTest.a'] - include.install ['include/CppUTest'] + lib.install 'lib/libCppUTest.a' + include.install 'include/CppUTest' end end |
