aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ctorrent.rb
blob: 2a338d47aa7f62a013d834ca8a7dab87d952a4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Ctorrent < Formula
  homepage 'http://www.rahul.net/dholmes/ctorrent/'
  url 'http://downloads.sourceforge.net/project/dtorrent/dtorrent/3.3.2/ctorrent-dnh3.3.2.tar.gz'
  sha1 'd4e221f0292268f80e2430ce9d451dd64cf1ffaa'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end