0499061db7
Closes Homebrew/homebrew#17505.
20 lines
494 B
Ruby
20 lines
494 B
Ruby
require 'formula'
|
|
|
|
class Lftp < Formula
|
|
homepage 'http://lftp.yar.ru/'
|
|
url 'http://ftp.yar.ru/pub/source/lftp/lftp-4.4.2.tar.bz2'
|
|
sha1 '7c45c1d102f376f4d88786d4e625fb0d4eedd764'
|
|
|
|
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
|