2010-08-30 14:43:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cpptest < Formula
|
2010-08-30 14:43:32 +00:00
|
|
|
homepage 'http://cpptest.sourceforge.net/'
|
2012-07-29 16:23:57 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/cpptest/cpptest/cpptest-1.1.1/cpptest-1.1.1.tar.gz'
|
|
|
|
sha1 '5c791746ecb0f18a5e4f15f8a57bf9e433399ebb'
|
2010-08-30 14:43:32 +00:00
|
|
|
|
|
|
|
def install
|
2012-07-29 16:23:57 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2010-08-30 14:43:32 +00:00
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|