106 lines
3 KiB
Ruby
106 lines
3 KiB
Ruby
class Boost < Formula
|
|
desc "Collection of portable C++ source libraries"
|
|
homepage "https://www.boost.org/"
|
|
url "https://dl.bintray.com/boostorg/release/1.70.0/source/boost_1_70_0.tar.bz2"
|
|
sha256 "430ae8354789de4fd19ee52f3b1f739e1fba576f0aded0897c3c2bc00fb38778"
|
|
head "https://github.com/boostorg/boost.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "c626b90770424ca969d0870d25d7fb13cf9d4f23a828407701face0e7ec4ac93" => :mojave
|
|
sha256 "8d5a7c95155faf57ce246d3455cea3628569d684a14fb9e621893ceaf3d65373" => :high_sierra
|
|
sha256 "0578344e152f306a4594b72493dcc3f638425b0fb7f4fcd23e5a523c4542b33a" => :sierra
|
|
end
|
|
|
|
depends_on "icu4c"
|
|
|
|
def install
|
|
# Force boost to compile with the desired compiler
|
|
open("user-config.jam", "a") do |file|
|
|
file.write "using darwin : : #{ENV.cxx} ;\n"
|
|
end
|
|
|
|
# libdir should be set by --prefix but isn't
|
|
icu4c_prefix = Formula["icu4c"].opt_prefix
|
|
bootstrap_args = %W[
|
|
--prefix=#{prefix}
|
|
--libdir=#{lib}
|
|
--with-icu=#{icu4c_prefix}
|
|
]
|
|
|
|
# Handle libraries that will not be built.
|
|
without_libraries = ["python", "mpi"]
|
|
|
|
# Boost.Log cannot be built using Apple GCC at the moment. Disabled
|
|
# on such systems.
|
|
without_libraries << "log" if ENV.compiler == :gcc
|
|
|
|
bootstrap_args << "--without-libraries=#{without_libraries.join(",")}"
|
|
|
|
# layout should be synchronized with boost-python and boost-mpi
|
|
#
|
|
# --no-cmake-config should be dropped if possible in next version
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--libdir=#{lib}
|
|
-d2
|
|
-j#{ENV.make_jobs}
|
|
--layout=tagged-1.66
|
|
--user-config=user-config.jam
|
|
--no-cmake-config
|
|
-sNO_LZMA=1
|
|
-sNO_ZSTD=1
|
|
install
|
|
threading=multi,single
|
|
link=shared,static
|
|
]
|
|
|
|
# Boost is using "clang++ -x c" to select C compiler which breaks C++14
|
|
# handling using ENV.cxx14. Using "cxxflags" and "linkflags" still works.
|
|
args << "cxxflags=-std=c++14"
|
|
if ENV.compiler == :clang
|
|
args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++"
|
|
end
|
|
|
|
system "./bootstrap.sh", *bootstrap_args
|
|
system "./b2", "headers"
|
|
system "./b2", *args
|
|
end
|
|
|
|
def caveats
|
|
s = ""
|
|
# ENV.compiler doesn't exist in caveats. Check library availability
|
|
# instead.
|
|
if Dir["#{lib}/libboost_log*"].empty?
|
|
s += <<~EOS
|
|
Building of Boost.Log is disabled because it requires newer GCC or Clang.
|
|
EOS
|
|
end
|
|
|
|
s
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <assert.h>
|
|
using namespace boost::algorithm;
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
string str("a,b");
|
|
vector<string> strVec;
|
|
split(strVec, str, is_any_of(","));
|
|
assert(strVec.size()==2);
|
|
assert(strVec[0]=="a");
|
|
assert(strVec[1]=="b");
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cpp", "-std=c++14", "-stdlib=libc++", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|