homebrew-core/Formula/lftp.rb

20 lines
461 B
Ruby
Raw Normal View History

require 'formula'
class Lftp <Formula
2011-03-07 20:47:26 +00:00
url 'http://ftp.yars.free.net/pub/source/lftp/lftp-4.2.0.tar.bz2'
2009-10-20 21:01:32 +00:00
homepage 'http://lftp.yar.ru/'
2011-03-07 20:47:26 +00:00
md5 'ce17c8b96a65975928a5c964a771d6f8'
depends_on 'pkg-config' => :build
depends_on 'readline'
2010-01-05 17:41:09 +00:00
depends_on 'gnutls'
def install
2010-02-08 17:01:50 +00:00
# Bus error
ENV.no_optimization if MACOS_VERSION == 10.5
2009-10-20 21:01:32 +00:00
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end