c43b174010
The upstream url/homepage has been taken over apparently, and is down regardless. Switched to the Github homepage and Debian mirrors. Re Homebrew/homebrew#40392 Signed-off-by: Hannes Weisbach <hannes.weisbach@mailbox.tu-dresden.de> Closes Homebrew/homebrew#40489. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
39 lines
1.4 KiB
Ruby
39 lines
1.4 KiB
Ruby
require "formula"
|
|
|
|
class Rtorrent < Formula
|
|
desc "Console-based BitTorrent client"
|
|
# Both homepage and primary url have been down since at least ~April 2015
|
|
homepage "https://github.com/rakshasa/rtorrent"
|
|
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/r/rtorrent/rtorrent_0.9.4.orig.tar.gz"
|
|
mirror "https://mirrors.kernel.org/debian/pool/main/r/rtorrent/rtorrent_0.9.4.orig.tar.gz"
|
|
sha256 "bc0a2c1ee613b68f37021beaf4e64a9252f91ed06f998c1e897897c354ce7e84"
|
|
revision 1
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libtorrent"
|
|
depends_on "xmlrpc-c" => :optional
|
|
|
|
# https://github.com/Homebrew/homebrew/issues/24132
|
|
fails_with :clang do
|
|
cause "Causes segfaults at startup/at random."
|
|
end
|
|
|
|
def install
|
|
# Commented out since we're now marked as failing with clang - adamv
|
|
# ENV.libstdcxx if ENV.compiler == :clang
|
|
|
|
args = ["--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"]
|
|
args << "--with-xmlrpc-c" if build.with? "xmlrpc-c"
|
|
if MacOS.version <= :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"
|
|
|
|
doc.install "doc/rtorrent.rc"
|
|
end
|
|
end
|