homebrew-core/Formula/unittest.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

16 lines
465 B
Ruby

class Unittest < Formula
desc "C++ Unit Test Framework"
homepage "http://unittest.red-bean.com/"
url "http://unittest.red-bean.com/tar/unittest-0.50-62.tar.gz"
sha256 "9586ef0149b6376da9b5f95a992c7ad1546254381808cddad1f03768974b165f"
fails_with :llvm do
build 2334
end
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end