aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
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