aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cpputest.rb
blob: 522caf013ede277d1b0b9656ed4f59d105885b45 (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.4.tar.gz'
  sha1 'ecd53f5b1a92a1f2291249ce69f544392f5a8462'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end