aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorChristian Mayer2009-09-25 14:25:09 +0200
committerMax Howell2009-09-25 15:31:55 +0100
commitd4aeb37caa21ede52c6aad90a12cbdcae5dc35c0 (patch)
tree0d7713955f7e7a41f46e92e5a54abd483caa1a83 /Library/Formula
parent07b8bb7cc5d5d8ff13450c354d80a3194eb5fd7a (diff)
downloadhomebrew-d4aeb37caa21ede52c6aad90a12cbdcae5dc35c0.tar.bz2
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.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/axel.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/axel.rb b/Library/Formula/axel.rb
new file mode 100644
index 000000000..c58a8e956
--- /dev/null
+++ b/Library/Formula/axel.rb
@@ -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