blob: dd552de907137f66a73010e312c31c49a8164f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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
|