aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ctorrent.rb
blob: 556de9573dfce15a250d725d1ab9d9047584c99b (plain)
1
2
3
4
5
6
7
8
9
10
11
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