homebrew-core/Formula/boost-python.rb
2018-02-09 06:00:53 -08:00

75 lines
2.4 KiB
Ruby

class BoostPython < Formula
desc "C++ library for C++/Python2 interoperability"
homepage "https://www.boost.org/"
url "https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2"
sha256 "5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9"
revision 1
head "https://github.com/boostorg/boost.git"
bottle do
cellar :any
sha256 "908a5484b565b1ee55ccec7d1f3e1a46f8f0e8132ce1b3a77c83d9753b35ebca" => :high_sierra
sha256 "a78c1be0a6f246b97a727891798217a9ef169dfd37cc5a8a5b1defa4ae4483e5" => :sierra
sha256 "40b97b1095e006a62935b93e966134c469b6ad3faf0e37980b813375842c5265" => :el_capitan
end
depends_on "boost"
needs :cxx11
def install
# "layout" should be synchronized with boost
args = ["--prefix=#{prefix}",
"--libdir=#{lib}",
"-d2",
"-j#{ENV.make_jobs}",
"--layout=tagged",
"threading=multi,single",
"link=shared,static"]
# Trunk starts using "clang++ -x c" to select C compiler which breaks C++11
# handling using ENV.cxx11. Using "cxxflags" and "linkflags" still works.
args << "cxxflags=-std=c++11"
if ENV.compiler == :clang
args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++"
end
pyver = Language::Python.major_minor_version "python"
system "./bootstrap.sh", "--prefix=#{prefix}", "--libdir=#{lib}",
"--with-libraries=python", "--with-python=python"
system "./b2", "--build-dir=build-python", "--stagedir=stage-python",
"python=#{pyver}", *args
lib.install Dir["stage-python/lib/*py*"]
doc.install Dir["libs/python/doc/*"]
end
test do
(testpath/"hello.cpp").write <<~EOS
#include <boost/python.hpp>
char const* greet() {
return "Hello, world!";
}
BOOST_PYTHON_MODULE(hello)
{
boost::python::def("greet", greet);
}
EOS
pyincludes = Utils.popen_read("python-config --includes").chomp.split(" ")
pylib = Utils.popen_read("python-config --ldflags").chomp.split(" ")
system ENV.cxx, "-shared", "hello.cpp", "-L#{lib}", "-lboost_python", "-o",
"hello.so", *pyincludes, *pylib
output = <<~EOS
from __future__ import print_function
import hello
print(hello.greet())
EOS
assert_match "Hello, world!", pipe_output("python", output, 0)
end
end