aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ctorrent.rb
blob: ddeb0903ac2e17b6ee227e1c6b2a79e379015b0a (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 'https://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