aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-12 22:03:43 -0800
committerAdam Vandenberg2012-02-12 22:03:43 -0800
commit0788a0049b5c29b4a738fa62e0b7eb10606e38ea (patch)
tree80186ddc860fba05e3753838ae17e07ebc60efb4
parent7c8a38a027d0bb39440ee3a6023fb564b9f529d3 (diff)
downloadhomebrew-0788a0049b5c29b4a738fa62e0b7eb10606e38ea.tar.bz2
cpputest: style update
-rw-r--r--Library/Formula/cpputest.rb6
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