2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-25 12:25:09 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Axel < Formula
|
2013-11-15 15:53:08 +00:00
|
|
|
homepage 'http://packages.debian.org/wheezy/axel'
|
|
|
|
url 'http://ftp.de.debian.org/debian/pool/main/a/axel/axel_2.4.orig.tar.gz'
|
|
|
|
sha1 '6d89a7ce797ddf4c23a210036d640d013fe843ca'
|
2009-09-25 12:25:09 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--debug=0", "--i18n=0"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|