homebrew-core/Formula/unittest.rb
Geoff Nixon b365397929 unittest: fix checksum
Closes Homebrew/homebrew#37070.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-24 00:17:02 -05:00

15 lines
406 B
Ruby

class Unittest < Formula
homepage "http://unittest.red-bean.com/"
url "http://unittest.red-bean.com/tar/unittest-0.50-62.tar.gz"
sha1 "c9012061963ac1330c6c6efc8cdbbb79360757fe"
fails_with :llvm do
build 2334
end
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end