2021-12-25 21:20:36 +00:00
|
|
|
class BoostAT176 < Formula
|
|
|
|
desc "Collection of portable C++ source libraries"
|
|
|
|
homepage "https://www.boost.org/"
|
|
|
|
url "https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2"
|
|
|
|
sha256 "f0397ba6e982c4450f27bf32a2a83292aba035b827a5623a14636ea583318c41"
|
|
|
|
license "BSL-1.0"
|
|
|
|
|
2022-02-19 13:37:59 +00:00
|
|
|
bottle do
|
|
|
|
sha256 cellar: :any, arm64_monterey: "66c3280102fef504a4745988edce253576591420244417926df42dee23328384"
|
|
|
|
sha256 cellar: :any, arm64_big_sur: "912ed05cdd06011e8bb53b017e9d04a45fc26fc0c335b9a88dfbfbc157ec2310"
|
|
|
|
sha256 cellar: :any, monterey: "3c332adb7b16e9f306e75f6395fa868d36575c92538f19b0b9be6e07c5ae2447"
|
|
|
|
sha256 cellar: :any, big_sur: "b54acddcd7d3520774abe9099446aa7f111a0a4f2b30390be7482b06b428e4e8"
|
|
|
|
sha256 cellar: :any, catalina: "bb8fe7a9e6337c3173890ab85867df3b2cb945eae79b388a86f1b67ee022e9c4"
|
|
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "fecb70b60d27b3c5e6110e8dde21b2937bdf92ddbb6b8741cf05c4b6f6716021"
|
|
|
|
end
|
|
|
|
|
2021-12-25 21:20:36 +00:00
|
|
|
keg_only :versioned_formula
|
|
|
|
|
|
|
|
depends_on "icu4c"
|
|
|
|
|
|
|
|
uses_from_macos "bzip2"
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
|
|
|
|
def install
|
|
|
|
# Force boost to compile with the desired compiler
|
|
|
|
open("user-config.jam", "a") do |file|
|
|
|
|
if OS.mac?
|
|
|
|
file.write "using darwin : : #{ENV.cxx} ;\n"
|
|
|
|
else
|
|
|
|
file.write "using gcc : : #{ENV.cxx} ;\n"
|
|
|
|
end
|
|
|
|
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
|
|
|
|
args = %W[
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--libdir=#{lib}
|
|
|
|
-d2
|
|
|
|
-j#{ENV.make_jobs}
|
|
|
|
--layout=tagged-1.66
|
|
|
|
--user-config=user-config.jam
|
|
|
|
-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"
|
|
|
|
args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++" if ENV.compiler == :clang
|
|
|
|
|
|
|
|
system "./bootstrap.sh", *bootstrap_args
|
|
|
|
system "./b2", "headers"
|
|
|
|
system "./b2", *args
|
|
|
|
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, "-I#{Formula["boost@1.76"].opt_include}", "test.cpp", "-std=c++14", "-o", "test"
|
|
|
|
system "./test"
|
|
|
|
end
|
|
|
|
end
|