aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/axel.rb
blob: d50741f363fa2c71655824a4c9fa522f62f286eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Axel < Formula
  url 'http://alioth.debian.org/frs/download.php/3016/axel-2.4.tar.bz2'
  homepage 'http://freshmeat.net/projects/axel/'
  sha1 '9e212e2890a678ccb2ab48f575a659a32d07b1a9'

  def install
    system "./configure", "--prefix=#{prefix}", "--debug=0", "--i18n=0"
    system "make"
    system "make install"
  end
end