2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-11 19:13:01 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lftp < Formula
|
2011-10-20 23:39:08 +00:00
|
|
|
url 'http://ftp.yars.free.net/pub/source/lftp/lftp-4.3.3.tar.bz2'
|
2009-10-20 21:01:32 +00:00
|
|
|
homepage 'http://lftp.yar.ru/'
|
2011-10-20 23:39:08 +00:00
|
|
|
md5 '91757a201c1030714ac1996f27437cc7'
|
2009-09-11 19:13:01 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2009-09-21 18:00:13 +00:00
|
|
|
depends_on 'readline'
|
2010-01-05 17:41:09 +00:00
|
|
|
depends_on 'gnutls'
|
2009-09-11 19:13:01 +00:00
|
|
|
|
|
|
|
def install
|
2010-02-08 17:01:50 +00:00
|
|
|
# Bus error
|
2011-04-08 18:16:37 +00:00
|
|
|
ENV.no_optimization if MacOS.leopard?
|
2010-02-08 17:01:50 +00:00
|
|
|
|
2011-07-04 15:44:17 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2009-09-11 19:13:01 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|