homebrew-core/Formula/check.rb
Adam Vandenberg 968ebee1ce Revert "check 0.9.9"
This reverts commit 16a176cfe4c457eb6a76ee54e6372689e24a0781.

Does not compile with clang or llvm.

Closes Homebrew/homebrew#17494.
2013-02-01 08:58:34 -08:00

16 lines
443 B
Ruby

require 'formula'
class Check < Formula
homepage 'http://check.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/check/check/0.9.8/check-0.9.8.tar.gz'
sha1 'a75cc89411e24b5d39b7869f8233e19f210de555'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end