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:
Christian Mayer 2009-09-25 14:25:09 +02:00 committed by Max Howell
parent 4ed3834be0
commit edb89a7829
3 changed files with 5 additions and 4 deletions

View File

@ -100,6 +100,7 @@ Commands:
Commands useful when contributing: Commands useful when contributing:
log formula log formula
create URL create URL
edit [formula]
To visit the Homebrew homepage type: To visit the Homebrew homepage type:
brew home brew home

View File

@ -11,14 +11,14 @@ def text_for_keg_only_formula f
#{f.name} is keg-only. This means it is not symlinked into Homebrew's #{f.name} is keg-only. This means it is not symlinked into Homebrew's
prefix. The formula provides the following rationale: prefix. The formula provides the following rationale:
#{f.keg_only?} #{f.keg_only?.chomp}
Generally there are no consequences of this for you, however if you build your Generally there are no consequences of this for you, however if you build your
own software and it requires this formula, you may want to run this command to own software and it requires this formula, you may want to run this command to
link it into the Homebrew prefix: link it into the Homebrew prefix:
brew link #{f.name} brew link #{f.name}
EOS EOS
end end
@ -105,7 +105,7 @@ def install f
end end
if f.keg_only? if f.keg_only?
ohai 'Caveats', text_for_keg_only_formula(f).chomp ohai 'Caveats', text_for_keg_only_formula(f)
show_summary_heading = true show_summary_heading = true
else else
begin begin

View File

@ -64,7 +64,7 @@ begin
# please improve it! :) # please improve it! :)
exec 'mate', *Dir["#{HOMEBREW_PREFIX}/Library/*"]<< exec 'mate', *Dir["#{HOMEBREW_PREFIX}/Library/*"]<<
"#{HOMEBREW_PREFIX}/bin/brew"<< "#{HOMEBREW_PREFIX}/bin/brew"<<
"#{HOMEBREW_PREFIX}/README*" "#{HOMEBREW_PREFIX}/README.md"
else else
exec_editor *ARGV.formulae.collect {|f| f.path} exec_editor *ARGV.formulae.collect {|f| f.path}
end end