d047b4ae0a
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
455 B
Ruby
19 lines
455 B
Ruby
require 'formula'
|
|
|
|
class Lftp < Formula
|
|
url 'http://ftp.yars.free.net/pub/source/lftp/lftp-4.2.2.tar.bz2'
|
|
homepage 'http://lftp.yar.ru/'
|
|
md5 '801d90de9def7fc0f88817bcc71295b7'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'readline'
|
|
depends_on 'gnutls'
|
|
|
|
def install
|
|
# Bus error
|
|
ENV.no_optimization if MacOS.leopard?
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|