homebrew-core/Formula/lftp.rb
Christopher Eby c93ea27ec3 lftp 4.4.11
Closes Homebrew/homebrew#24219.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-11-12 12:41:24 -06:00

22 lines
611 B
Ruby

require 'formula'
class Lftp < Formula
homepage 'http://lftp.yar.ru/'
url 'http://lftp.yar.ru/ftp/lftp-4.4.11.tar.bz2'
mirror 'ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/lftp-4.4.11.tar.bz2'
sha1 '56cefb9aa683acfa5c5713d530f594085ea7b149'
depends_on 'pkg-config' => :build
depends_on 'readline'
depends_on 'gnutls'
def install
# Bus error
# TODO what are the more specific circumstances?
ENV.no_optimization if MacOS.version <= :leopard
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end