homebrew-core/Formula/check.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

16 lines
445 B
Ruby

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