homebrew-core/Formula/check.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

16 lines
446 B
Ruby

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