c4334774f6
Closes Homebrew/homebrew#18567. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
21 lines
567 B
Ruby
21 lines
567 B
Ruby
require 'formula'
|
|
|
|
class Lftp < Formula
|
|
homepage 'http://lftp.yar.ru/'
|
|
url 'http://ftp.yar.ru/pub/source/lftp/lftp-4.4.5.tar.bz2'
|
|
mirror 'ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/lftp-4.4.5.tar.bz2'
|
|
sha1 'b985c5985b6663703d4cd815c27dc7e74103c975'
|
|
|
|
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
|