homebrew-core/Formula/bbftp-client.rb
Rui Pereira 6ff4c338eb New formula: bbftp-client 3.2.1
bbFTP is a file transfer software. It implements its own transfer
protocol, which is optimized for large files (larger than 2GB) and
secure as it does not read the password in a file and encrypts the
connection information.

Closes Homebrew/homebrew#18901.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-04 23:43:00 -05:00

19 lines
460 B
Ruby

require 'formula'
class BbftpClient < Formula
homepage 'http://doc.in2p3.fr/bbftp/'
url 'http://doc.in2p3.fr/bbftp/dist/bbftp-client-3.2.1.tar.gz'
sha1 '26113782b8826610c877f83bdaf79798b30a507d'
def install
cd 'bbftpc' do
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
test do
system "#{bin}/bbftp", "-v"
end
end