blob: f03af82753aba0823502fd3b3dc4ba24f196b2fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Lftp <Formula
url 'http://ftp.yars.free.net/pub/source/lftp/lftp-3.7.15.tar.gz'
homepage 'http://lftp.yar.ru/'
md5 '6c43ffdb59234ff0533cfdda0c3c305c'
depends_on 'readline'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end
|