2014-05-23 20:21:36 +00:00
|
|
|
require "formula"
|
2009-09-11 19:13:01 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lftp < Formula
|
2014-05-23 20:21:36 +00:00
|
|
|
homepage "http://lftp.yar.ru/"
|
|
|
|
url "http://lftp.yar.ru/ftp/lftp-4.5.0.tar.xz"
|
|
|
|
sha1 "467bca46cff63d9d1391d74d45f1d96e04a652be"
|
2009-09-11 19:13:01 +00:00
|
|
|
|
2014-05-23 20:21:36 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "readline"
|
|
|
|
depends_on "openssl"
|
2009-09-11 19:13:01 +00:00
|
|
|
|
|
|
|
def install
|
2014-05-23 20:21:36 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-openssl=#{Formula["openssl"].opt_prefix}"
|
|
|
|
system "make", "install"
|
2009-09-11 19:13:01 +00:00
|
|
|
end
|
|
|
|
end
|