homebrew-core/Formula/aria2.rb
chdiza 5c577ae7d9 aria2: Only require gnutls when necessary
gnutls isn't required when the user asks for aria2 to be brewed
`--with-appletls`.

Closes Homebrew/homebrew#22561.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-15 09:47:09 -07:00

29 lines
914 B
Ruby

require 'formula'
class Aria2 < Formula
homepage 'http://aria2.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/aria2/stable/aria2-1.18.0/aria2-1.18.0.tar.bz2'
sha1 '1512133f328b825e3ce7d1d85643c08febb21978'
option 'with-appletls', 'Build with Secure Transport for SSL support'
depends_on 'pkg-config' => :build
depends_on 'gnutls' unless build.with? 'appletls'
depends_on 'curl-ca-bundle' => :recommended
depends_on :macos => :lion # Needs a c++11 compiler
def install
args = %W[--disable-dependency-tracking --prefix=#{prefix}]
args << "--with-ca-bundle=#{HOMEBREW_PREFIX}/share/ca-bundle.crt" if build.with? 'curl-ca-bundle'
if build.with? 'appletls'
args << "--with-appletls"
else
args << "--without-appletls"
end
system "./configure", *args
system "make install"
bash_completion.install "doc/bash_completion/aria2c"
end
end