blob: 2d6129bf5a3d8a6c4dcf981203e0b01d507b97ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Cpputest < Formula
  homepage 'http://www.cpputest.org/'
  url 'https://github.com/cpputest/cpputest/archive/v3.5.tar.gz'
  sha1 'a774f99f191db77abf48f4d6b64190bc445369c5'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end
  |