2009-10-15 02:35:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libtorrent < Formula
|
2009-10-15 02:35:31 +00:00
|
|
|
homepage 'http://libtorrent.rakshasa.no/'
|
2012-07-10 19:41:36 +00:00
|
|
|
url 'http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.2.tar.gz'
|
|
|
|
sha1 '4f34a744fbe10c54aaf53d34681fabc1a49d7257'
|
2009-10-15 02:35:31 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2009-10-15 02:35:31 +00:00
|
|
|
depends_on 'libsigc++'
|
|
|
|
|
|
|
|
def install
|
2012-04-03 21:51:50 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--with-kqueue",
|
|
|
|
"--enable-ipv6"
|
2009-10-15 02:35:31 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|