a03503ff60
Closes Homebrew/homebrew#18219. Signed-off-by: Jack Nagel <jacknagel@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.4.tar.bz2'
|
|
mirror 'ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/lftp-4.4.4.tar.bz2'
|
|
sha1 '6cc497421de51870802f17eeee32ef52d2dcf246'
|
|
|
|
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
|