2014-07-21 02:23:43 +00:00
|
|
|
require "formula"
|
2011-07-23 13:50:13 +00:00
|
|
|
|
|
|
|
class Cpputest < Formula
|
2014-07-21 02:23:43 +00:00
|
|
|
homepage "http://www.cpputest.org/"
|
|
|
|
url "https://github.com/cpputest/cpputest/archive/v3.6.tar.gz"
|
|
|
|
sha1 "308a4200adfb86182251d435e09f42360d9ed8ea"
|
2012-09-05 15:50:40 +00:00
|
|
|
|
2014-12-11 08:31:03 +00:00
|
|
|
head do
|
|
|
|
url "https://github.com/cpputest/cpputest.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
end
|
|
|
|
|
2011-07-23 13:50:13 +00:00
|
|
|
def install
|
2014-12-11 08:31:03 +00:00
|
|
|
system "./autogen.sh" if build.head?
|
2013-06-09 17:05:50 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
2011-07-23 13:50:13 +00:00
|
|
|
end
|
|
|
|
end
|