blob: d836c7d8758e8b523efa2ce5051540939c0754b5 (
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 'https://downloads.sourceforge.net/project/cpptest/cpptest/cpptest-1.1.2/cpptest-1.1.2.tar.gz'
  sha1 'c8e69ca98f9b39016c94f1f78659f412ee825049'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |