diff --git a/.doozer.json b/.doozer.json index 3925e61c8..86ccf7a82 100644 --- a/.doozer.json +++ b/.doozer.json @@ -14,15 +14,12 @@ }, "macOS": { "buildenv": "osx", - "homebrew": { "formulae": ["wget"] }, "buildcmd": [ - "wget --quiet -O boost.zip https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.zip", - "unzip -qq boost.zip", - "rm boost.zip", - "(cd boost_1_68_0/tools/build/src/engine && ./build.sh)", + "curl -Ls https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz | tar xz", + "(cd boost_1_68_0 && ./bootstrap.sh)", "echo \"using darwin : : clang++ : -std=c++11 ;\" > ~/user-config.jam", "cd simulation", - "BOOST_ROOT=${PWD}/../boost_1_68_0 ../boost_1_68_0/tools/build/src/engine/bin.macosxx86_64/bjam --hash -j${PARALLEL}" + "BOOST_ROOT=${PWD}/../boost_1_68_0 ../boost_1_68_0/bjam --hash -j${PARALLEL}" ] } }