2009-10-15 02:35:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Rtorrent < Formula
|
2010-02-20 05:28:33 +00:00
|
|
|
url 'http://libtorrent.rakshasa.no/downloads/rtorrent-0.8.6.tar.gz'
|
2009-10-15 02:35:31 +00:00
|
|
|
homepage 'http://libtorrent.rakshasa.no/'
|
2010-02-20 05:28:33 +00:00
|
|
|
md5 'b804c45c01c40312926bcea6b55bb084'
|
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++'
|
|
|
|
depends_on 'libtorrent'
|
2010-05-13 05:20:50 +00:00
|
|
|
depends_on 'xmlrpc-c' => :optional
|
2009-10-15 02:35:31 +00:00
|
|
|
|
|
|
|
def install
|
2010-05-13 05:20:50 +00:00
|
|
|
args = ["--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"]
|
|
|
|
args << "--with-xmlrpc-c" if Formula.factory("xmlrpc-c").installed?
|
2011-02-16 23:04:31 +00:00
|
|
|
if MACOS_VERSION == 10.5
|
|
|
|
inreplace 'configure' do |s|
|
|
|
|
s.gsub! ' pkg_cv_libcurl_LIBS=`$PKG_CONFIG --libs "libcurl >= 7.15.4" 2>/dev/null`', ' pkg_cv_libcurl_LIBS=`$PKG_CONFIG --libs "libcurl >= 7.15.4" | sed -e "s/-arch [^-]*/-arch $(uname -m) /" 2>/dev/null`'
|
|
|
|
end
|
|
|
|
end
|
2010-05-13 05:20:50 +00:00
|
|
|
system "./configure", *args
|
2009-10-15 02:35:31 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|