homebrew-core/Formula/axel.rb
Liyang HU 0ff6ef18bd axel, libhid, minicom: URL changed
still debian, but slightly different. SHA1 unchanged.

Closes Homebrew/homebrew#20434.

Signed-off-by: Samuel John <github@SamuelJohn.de>
2013-06-12 13:07:06 +02:00

13 lines
357 B
Ruby

require 'formula'
class Axel < Formula
homepage 'http://freshmeat.net/projects/axel/'
url 'http://alioth.debian.org/frs/download.php/file/3016/axel-2.4.tar.bz2'
sha1 '9e212e2890a678ccb2ab48f575a659a32d07b1a9'
def install
system "./configure", "--prefix=#{prefix}", "--debug=0", "--i18n=0"
system "make"
system "make install"
end
end