blob: 66cdd79bff2c7f8b342c8ff18fb131762a50c585 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Cpptest < Formula
homepage 'http://cpptest.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/cpptest/cpptest/cpptest-1.1.1/cpptest-1.1.1.tar.gz'
sha1 '5c791746ecb0f18a5e4f15f8a57bf9e433399ebb'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|