blob: 1b0db984d5c3c0ea8b2463ebe09f398456d7dd7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|