homebrew-core/Formula/ccd2iso.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
411 B
Ruby

require 'formula'
class Ccd2iso < Formula
homepage 'http://ccd2iso.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/ccd2iso/ccd2iso/ccd2iso-0.3/ccd2iso-0.3.tar.gz'
sha1 'cbefdc086adf45138d921a4a7c0ff012dd7c9ca7'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end