06a6af7e50
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
32 lines
1 KiB
Ruby
32 lines
1 KiB
Ruby
require 'formula'
|
|
|
|
class Rtorrent < Formula
|
|
url 'http://libtorrent.rakshasa.no/downloads/rtorrent-0.8.9.tar.gz'
|
|
homepage 'http://libtorrent.rakshasa.no/'
|
|
md5 '629247636cb1210663b52dadbd040a6c'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'libsigc++'
|
|
depends_on 'libtorrent'
|
|
depends_on 'xmlrpc-c' => :optional
|
|
|
|
# Upstream says this is fixed in 0.9.x series, so check if this is
|
|
# still needed when the next stable rtorrent release is made.
|
|
fails_with :clang do
|
|
build 318
|
|
end
|
|
|
|
def install
|
|
args = ["--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"]
|
|
args << "--with-xmlrpc-c" if Formula.factory("xmlrpc-c").installed?
|
|
if MacOS.leopard?
|
|
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
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|