aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bbftp-client.rb
blob: 26c3175ba006ab411d95daa8dcff58318174dffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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