20 lines
460 B
Ruby
20 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
|