blob: ac4473db573e7317c1871c21fa60681d9b3df092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class Aria2 < Formula
homepage 'http://aria2.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/aria2/stable/aria2-1.18.1/aria2-1.18.1.tar.bz2'
sha1 '050f521848353fe90568059768d73a5a6f7ff869'
depends_on 'pkg-config' => :build
depends_on :macos => :lion # Needs a c++11 compiler
def install
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--with-appletls
--without-openssl
--without-gnutls
--without-libgmp
--without-libnettle
--without-libgcrypt
]
system "./configure", *args
system "make install"
bash_completion.install "doc/bash_completion/aria2c"
end
end
|