homebrew-core/Formula/boost.rb

107 lines
3.5 KiB
Ruby

class Boost < Formula
desc "Collection of portable C++ source libraries"
homepage "https://www.boost.org/"
url "https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.bz2"
sha256 "8681f175d4bdb26c52222665793eef08490d7758529330f98d3b29dd0735bccc"
license "BSL-1.0"
head "https://github.com/boostorg/boost.git", branch: "master"
livecheck do
url "https://www.boost.org/users/download/"
regex(/href=.*?boost[._-]v?(\d+(?:[._]\d+)+)\.t/i)
strategy :page_match do |page, regex|
page.scan(regex).map { |match| match.first.tr("_", ".") }
end
end
bottle do
sha256 cellar: :any, arm64_monterey: "e89b4c907d0525c0ab49e72b3b74f4e6b878bbdcad2b2fcc248d4e1a3e5ce671"
sha256 cellar: :any, arm64_big_sur: "7b573f995d7a425d1134d33a5c600baffee0525fa0e72d44ee95faeea0122aff"
sha256 cellar: :any, monterey: "0a37c43d096cad586000acbeddb14784c6df60eb1d6cf8c9d52f79f27536425a"
sha256 cellar: :any, big_sur: "4748dcc963779a92e3f1683d45a49277b9e2090e4f9b250d234728d811c1e456"
sha256 cellar: :any, catalina: "d421f97398d7b3f0da91de6a2c7143e008eac386c89e6950c5acd9e74c99c841"
sha256 cellar: :any_skip_relocation, x86_64_linux: "83eb1e9a552a1ae127729bb60949a81e475ac787738b661bfb1bf838b4a632a5"
end
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, "test.cpp", "-std=c++14", "-o", "test"
system "./test"
end
end