homebrew-core/Formula/aria2.rb
Ali Asad Lotia 24d999b82a Updated aria2 to 1.9.0.
The version was updated from 1.8.2 to 1.9.0. 1.8.2 was no longer
available at the specified download location and installation was
failing because a 404 was returned when attempting to download aria2
1.8.2.

Signed-off-by: David Höppner <0xffea@gmail.com>
2010-03-24 10:31:32 +01:00

13 lines
415 B
Ruby

require 'formula'
class Aria2 <Formula
url 'http://downloads.sourceforge.net/project/aria2/stable/latest/aria2-1.9.0.tar.bz2'
md5 '2059bc4a3f4ed155020f0f24e62d79e0'
homepage 'http://aria2.sourceforge.net/'
def install
ENV.gcc_4_2 # 1.8.2 didn't work w/ LLVM on 10.6
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end