homebrew-core/Formula/lftp.rb
Brendan Kemp a03503ff60 lftp: add mirror
Closes Homebrew/homebrew#18219.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-03-03 22:47:04 -06:00

21 lines
567 B
Ruby

require 'formula'
class Lftp < Formula
homepage 'http://lftp.yar.ru/'
url 'http://ftp.yar.ru/pub/source/lftp/lftp-4.4.4.tar.bz2'
mirror 'ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/lftp-4.4.4.tar.bz2'
sha1 '6cc497421de51870802f17eeee32ef52d2dcf246'
depends_on 'pkg-config' => :build
depends_on 'readline'
depends_on 'gnutls'
def install
# Bus error
ENV.no_optimization if MacOS.version == :leopard
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end