New formula: gtest

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Silas Sewell 2010-02-21 14:04:52 -07:00 committed by Adam Vandenberg
parent 9b64a23659
commit 6a936afe01

12
Formula/gtest.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Gtest <Formula
url 'http://googletest.googlecode.com/files/gtest-1.4.0.tar.gz'
homepage 'http://code.google.com/p/googletest/'
md5 'ec1dd5ab07cde5da033b1d631e621167'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end