blob: 1a353c43fdd3d6bd54b2886fc440ce2336feeda2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Lftp <Formula
url 'http://ftp.yars.free.net/pub/source/lftp/lftp-4.0.9.tar.bz2'
homepage 'http://lftp.yar.ru/'
md5 'd3f0cd7569e31e50370208dd77a7c41b'
depends_on 'readline'
depends_on 'pkg-config'
depends_on 'gnutls'
def install
# Bus error
ENV.no_optimization if MACOS_VERSION == 10.5
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end
|