aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rtorrent.rb
blob: 18a61a4d8d7087bbc74d37340d6b0b73e4f102e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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