Update Aria2 to 1.8.2; use GCC.

master
Adam Vandenberg 2010-02-11 14:50:16 -08:00
parent f9c4454e2d
commit fa023e3f49
1 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,12 @@
require 'formula'
class Aria2 <Formula
@url='http://downloads.sourceforge.net/project/aria2/stable/latest/aria2-1.8.0.tar.bz2'
@homepage='http://aria2.sourceforge.net/'
@md5='13944c95529de6846f0ab9ba09c53e3e'
url 'http://downloads.sourceforge.net/project/aria2/stable/latest/aria2-1.8.2.tar.bz2'
md5 'ec72262dbe4b4091dfe29d08f8e4d097'
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