30 lines
1 KiB
Ruby
30 lines
1 KiB
Ruby
class UnittestCpp < Formula
|
|
desc "Unit testing framework for C++"
|
|
homepage "https://github.com/unittest-cpp/unittest-cpp"
|
|
url "https://github.com/unittest-cpp/unittest-cpp/releases/download/v2.0.0/unittest-cpp-2.0.0.tar.gz"
|
|
sha256 "1d1b118518dc200e6b87bbf3ae7bfd00a0cfc6be708255f98e5e3d627a7c9f98"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "91d028b464f32fcf6edda6b791be2b70d9b770934edd7af7d2b8ff24e9c5eb06" => :sierra
|
|
sha256 "6136d8cdc420681130c59d9f77327ddad6b46a35d29da5be760b522c7456e2a2" => :el_capitan
|
|
sha256 "573f6f3a83ba0d2d0e3b54314a5eb93affd11f03bcc409d381ef8253d7e03c4c" => :yosemite
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/unittest-cpp/unittest-cpp.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
def install
|
|
system "autoreconf", "-fvi" if build.head?
|
|
system "./configure", "--prefix=#{prefix}", "--disable-silent-rules"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, File.read(lib/"pkgconfig/UnitTest++.pc")
|
|
end
|
|
end
|