18 lines
493 B
Ruby
18 lines
493 B
Ruby
require "formula"
|
|
|
|
class Lftp < Formula
|
|
homepage "http://lftp.yar.ru/"
|
|
url "http://lftp.yar.ru/ftp/lftp-4.5.0.tar.xz"
|
|
sha1 "467bca46cff63d9d1391d74d45f1d96e04a652be"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "readline"
|
|
depends_on "openssl"
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-openssl=#{Formula["openssl"].opt_prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|