Axel formula
Axel tries to accelerate downloads by using multiple connections (possibly to multiple servers) for one download. Because of its size, it might be very useful on bootdisks or other small systems as a wget replacement.
This commit is contained in:
parent
24ce147997
commit
a16ab414b2
1 changed files with 13 additions and 0 deletions
13
Formula/axel.rb
Normal file
13
Formula/axel.rb
Normal file
|
@ -0,0 +1,13 @@
|
|||
require 'brewkit'
|
||||
|
||||
class Axel <Formula
|
||||
url 'http://alioth.debian.org/frs/download.php/3016/axel-2.4.tar.bz2'
|
||||
homepage 'http://freshmeat.net/projects/axel/'
|
||||
md5 '5fd72e67a682d20874b9f6d073201c6a'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--debug=0", "--i18n=0"
|
||||
system "make"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue