19 lines
451 B
Ruby
19 lines
451 B
Ruby
require 'formula'
|
|
|
|
class Lftp <Formula
|
|
url 'http://ftp.yars.free.net/pub/source/lftp/lftp-4.0.6.tar.bz2'
|
|
homepage 'http://lftp.yar.ru/'
|
|
md5 '7cd4f6f7d3b5d9baab4e090ebced9c91'
|
|
|
|
depends_on 'readline'
|
|
depends_on 'pkg-config'
|
|
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
|