File: install_boost.sh

package info (click to toggle)
aoflagger 3.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,000 kB
  • sloc: cpp: 67,891; python: 497; sh: 242; makefile: 22
file content (10 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
# Script to install extra boost libraries from source

set -euo pipefail

# Boost is already in the container as leftover from casacore install
pushd /build/boost_${BOOST_}
./bootstrap.sh --prefix=/opt/boost --with-libraries=math,date_time,system
./b2 -j${THREADS} cxxflags="-fPIC" link=static,shared install

popd