homebrew-core/Formula/cunit.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

13 lines
402 B
Ruby

require 'formula'
class Cunit < Formula
homepage 'http://cunit.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/cunit/CUnit/2.1-2/CUnit-2.1-2-src.tar.bz2'
sha1 '6c2d0627eb64c09c7140726d6bf814cf531a3ce0'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end