homebrew-core/Formula/lftp.rb
xdite 300881f4fc update lftp version to 4.2.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-04-01 12:01:35 -07:00

19 lines
462 B
Ruby

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