Formula for ctorrent bittorent client.

This commit is contained in:
Jordan Bracco 2009-11-12 17:51:28 +01:00 committed by Max Howell
parent acce27e5e1
commit 9401acd220

12
Formula/ctorrent.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Ctorrent <Formula
url 'http://downloads.sourceforge.net/project/dtorrent/dtorrent/3.3.2/ctorrent-dnh3.3.2.tar.gz'
homepage 'http://www.rahul.net/dholmes/ctorrent/'
md5 '59b23dd05ff70791cd6449effa7fc3b6'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end