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

17 lines
517 B
Ruby

require 'formula'
class Ctl < Formula
homepage 'https://github.com/ampas/CTL'
url 'https://downloads.sourceforge.net/project/ampasctl/ctl/ctl-1.4.1/ctl-1.4.1.tar.gz'
sha1 '4e31de8e8da144bbc840d97014a8f45e20e398ac'
depends_on 'ilmbase'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--with-ilmbase-prefix=#{HOMEBREW_PREFIX}",
"--prefix=#{prefix}"
system "make install"
end
end