homebrew-core/Formula/lftp.rb
Nothing. N. Nobody f0e4dd81ef lftp 4.4.3
Closes Homebrew/homebrew#17828.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-02-13 23:10:45 -06:00

20 lines
494 B
Ruby

require 'formula'
class Lftp < Formula
homepage 'http://lftp.yar.ru/'
url 'http://ftp.yar.ru/pub/source/lftp/lftp-4.4.3.tar.bz2'
sha1 'f027fc0ee1069c8fa0ae665eeea742c16d58a5d8'
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