homebrew-core/Formula/ctorrent.rb

14 lines
421 B
Ruby
Raw Normal View History

2009-11-12 16:51:28 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Ctorrent < Formula
2009-11-12 16:51:28 +00:00
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'
2009-11-12 16:51:28 +00:00
def install
2013-01-27 22:02:23 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2009-11-12 16:51:28 +00:00
system "make install"
end
end