homebrew-core/Formula/lftp.rb
Jack Nagel cf96718072 lftp 4.3.2
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-18 16:39:36 -05:00

19 lines
455 B
Ruby

require 'formula'
class Lftp < Formula
url 'http://ftp.yars.free.net/pub/source/lftp/lftp-4.3.2.tar.bz2'
homepage 'http://lftp.yar.ru/'
md5 '18f5c5b351cfad0a0ab069592effd664'
depends_on 'pkg-config' => :build
depends_on 'readline'
depends_on 'gnutls'
def install
# Bus error
ENV.no_optimization if MacOS.leopard?
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end