homebrew-core/Formula/lftp.rb

15 lines
337 B
Ruby
Raw Normal View History

require 'formula'
class Lftp <Formula
2009-10-20 21:01:32 +00:00
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
2009-10-20 21:01:32 +00:00
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end