8a948dabf3
This requires a private libsigc++, since that library is too widely used to always build using libstdc++. Hopefully this is only a temporary solution. Fixes Homebrew/homebrew#23483.
23 lines
728 B
Ruby
23 lines
728 B
Ruby
require 'formula'
|
|
|
|
class Libtorrent < Formula
|
|
homepage 'http://libtorrent.rakshasa.no/'
|
|
url 'http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.3.tar.gz'
|
|
sha256 '34317d6783b7f8d0805274c9467475b5432a246c0de8e28fc16e3b0b43f35677'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def install
|
|
# Currently can't build against libc++; see:
|
|
# https://github.com/mxcl/homebrew/issues/23483
|
|
ENV.libstdcxx if ENV.compiler == :clang
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--with-kqueue",
|
|
"--enable-ipv6"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|