contrib/boost/Pkgfile

56 lines
1.8 KiB
Plaintext
Raw Normal View History

# Description: Free peer-reviewed portable C++ source libraries.
2020-07-12 20:48:11 +02:00
# URL: https://www.boost.org/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: python
# Optional: icu python3-numpy
name=boost
2021-04-18 04:03:36 +02:00
version=1.76.0
2021-06-14 04:40:20 +02:00
release=2
2021-06-05 09:22:49 +02:00
source=(https://boostorg.jfrog.io/artifactory/main/release/$version/source/${name}_${version//./_}.tar.bz2
boost-1.74-CVE-2012-2677.patch
boost-1.71.0-disable_icu_rpath.patch
boost-ublas-c++20-iterator.patch)
build() {
2010-11-13 05:04:55 +01:00
cd ${name}_${version//./_}
2007-07-22 14:46:23 +02:00
patch -p1 -i $SRC/boost-1.74-CVE-2012-2677.patch
patch -p1 -i $SRC/boost-1.71.0-disable_icu_rpath.patch
# https://github.com/boostorg/ublas/commit/a31e5cffa85f.patch
patch -p2 -i $SRC/boost-ublas-c++20-iterator.patch
local config="
variant=release \
threading=multi \
runtime-link=shared \
link=shared,static \
debug-symbols=off \
toolset=gcc \
-j ${JOBS-1}"
2016-12-29 00:37:57 +01:00
local ICU="$([ -e /usr/bin/icu-config ] && echo --with-icu)"
./bootstrap.sh --prefix=$PKG/usr --with-toolset=gcc $ICU --with-python=/usr/bin/python2
local pyver2="$(/usr/bin/python2 -c 'import sys; print("%s.%s" % sys.version_info[:2])')"
2016-12-29 00:37:57 +01:00
./b2 stage $config python="$pyver2"
2015-01-31 02:58:54 +01:00
./b2 install threading=multi link=shared
2021-06-14 04:40:20 +02:00
./b2 install threading=multi link=static
install -m 0755 -D b2 $PKG/usr/bin/b2
ln -s b2 $PKG/usr/bin/bjam
##
./bootstrap.sh --prefix=$PKG/usr --with-toolset=gcc $ICU --with-python=/usr/bin/python3 --with-libraries=python
local pyver3=$(/usr/bin/python3 -c 'import sys; print("%s.%s" % sys.version_info[:2])')
./b2 clean
./b2 stage $config python="$pyver3"
./b2 install threading=multi link=shared
# https://github.com/boostorg/python/issues/203#issuecomment-391477685
local pyver="$(/usr/bin/python3 -c 'import sys; print("%s%s" % sys.version_info[:2])')"
ln -s libboost_python$pyver.so $PKG/usr/lib/libboost_python3.so
}