homebrew-core/Formula/libtorrent-rasterbar.rb
Thomas Texier 8c6419bbc6 libtorrent-rasterbar 0.16.16
Closes Homebrew/homebrew#28310.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-04-10 18:42:44 -05:00

33 lines
1.1 KiB
Ruby

require 'formula'
class LibtorrentRasterbar < Formula
homepage 'http://www.rasterbar.com/products/libtorrent/'
url 'https://downloads.sourceforge.net/project/libtorrent/libtorrent/libtorrent-rasterbar-0.16.16.tar.gz'
sha1 'de8faed5cbc09baddb2748cb7b75edd07ab0addc'
depends_on 'pkg-config' => :build
depends_on 'boost'
depends_on 'openssl' if MacOS.version <= :snow_leopard # Needs a newer version of OpenSSL on Snow Leopard
depends_on :python => :recommended
def install
boost = Formula["boost"]
args = [ "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-boost=#{boost.opt_prefix}" ]
# Build python bindings requires forcing usage of the mt version of boost_python.
# Be aware that if using a brewed python, boost will have to be built from source
# to ensure that boost_python is linked against the brewed python runtime.
if build.with? "python"
args << "--enable-python-binding"
args << "--with-boost-python=boost_python-mt"
args << "PYTHON_EXTRA_LDFLAGS= "
end
system "./configure", *args
system "make install"
end
end