diff options
| author | Rui Pereira | 2013-03-05 17:44:27 +0100 |
|---|---|---|
| committer | Jack Nagel | 2013-04-04 23:43:00 -0500 |
| commit | f31f250b78a7a777f6ca3eea6ffbd13b56162a10 (patch) | |
| tree | 7478225bb9ce3d44bab9c141905ac8ce7fe973b5 /Library | |
| parent | 32fc189af4095c5f732a60bb6e2a756494ab3c38 (diff) | |
| download | homebrew-f31f250b78a7a777f6ca3eea6ffbd13b56162a10.tar.bz2 | |
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 #18901.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/bbftp-client.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/bbftp-client.rb b/Library/Formula/bbftp-client.rb new file mode 100644 index 000000000..26c3175ba --- /dev/null +++ b/Library/Formula/bbftp-client.rb @@ -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 |
