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>
This commit is contained in:
Rui Pereira 2013-03-05 17:44:27 +01:00 committed by Jack Nagel
parent 7a5d476747
commit 6ff4c338eb

19
Formula/bbftp-client.rb Normal file
View file

@ -0,0 +1,19 @@
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