PKGBUILDs/extra/boost/PKGBUILD

132 lines
4.9 KiB
Bash
Raw Normal View History

2021-06-10 12:48:30 +00:00
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: Levente Polyak <anthraxx[at]archlinux[dot]org>
2018-09-21 18:59:40 +00:00
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2017-07-13 12:46:49 +00:00
# Contributor: Marius Knaust <marius.knaust@gmail.com>
2015-12-23 18:59:16 +00:00
# Contributor: Ionut Biru <ibiru@archlinux.org>
2014-09-07 14:39:43 +00:00
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
2013-03-26 21:59:17 +00:00
# Contributor: kevin <kevin@archlinux.org>
2011-01-19 05:10:54 +00:00
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Kritoke <kritoke@gamebox.net>
2011-01-19 05:10:54 +00:00
# Contributor: Luca Roccia <little_rock@users.sourceforge.net>
2012-07-23 16:34:01 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2015-07-11 04:21:02 +00:00
# - specify arm architecture to b2 for aarch64
2011-01-19 05:10:54 +00:00
2021-06-10 12:48:30 +00:00
pkgname=('boost' 'boost-libs')
2022-06-14 23:45:09 +00:00
pkgver=1.79.0
pkgrel=1
2021-06-10 12:48:30 +00:00
_srcname=boost_${pkgver//./_}
pkgdesc="Free peer-reviewed portable C++ source libraries"
2017-11-17 23:24:12 +00:00
arch=('x86_64')
2021-06-10 12:48:30 +00:00
url="https://www.boost.org/"
2011-01-19 05:10:54 +00:00
license=('custom')
2021-06-10 12:48:30 +00:00
makedepends=('icu' 'python' 'python-numpy' 'bzip2' 'zlib' 'openmpi' 'zstd')
source=(https://boostorg.jfrog.io/artifactory/main/release/$pkgver/source/$_srcname.tar.gz
2022-06-08 18:53:14 +00:00
$pkgname-locale-empty-vector.patch::https://github.com/boostorg/locale/commit/1ff0ead837b3.patch
2021-12-19 05:27:00 +00:00
$pkgname-ublas-c++20-iterator.patch::https://github.com/boostorg/ublas/commit/a31e5cffa85f.patch)
2022-06-14 23:45:09 +00:00
sha256sums=('273f1be93238a068aba4f9735a4a2b003019af067b9c183ed227780b8f36062c'
2022-06-08 18:53:14 +00:00
'6c05bd362bc18908a7e23eec3b4a714f82c15c722bda4c340778e2f5b1a9bf25'
2021-12-19 05:27:00 +00:00
'aa38addb40d5f44b4a8472029b475e7e6aef1c460509eb7d8edf03491dc1b5ee')
2020-12-09 22:43:50 +00:00
prepare() {
2021-06-10 12:48:30 +00:00
cd $_srcname
2020-12-09 22:43:50 +00:00
2022-06-08 18:53:14 +00:00
# https://github.com/boostorg/locale/issues/52
patch -Np1 -d libs/locale <../$pkgname-locale-empty-vector.patch
2021-06-10 12:48:30 +00:00
# https://github.com/boostorg/ublas/pull/97
patch -Np2 -i ../$pkgname-ublas-c++20-iterator.patch
2020-12-09 22:43:50 +00:00
}
2014-01-09 22:37:29 +00:00
build() {
2021-06-10 12:48:30 +00:00
local JOBS="$(sed 's/.*\(-j *[0-9]\+\).*/\1/' <<<$MAKEFLAGS)"
pushd $_srcname/tools/build
./bootstrap.sh --cxxflags="$CXXFLAGS $LDFLAGS"
./b2 install --prefix="$srcdir"/fakeinstall
ln -s b2 "$srcdir"/fakeinstall/bin/bjam
popd
cd $_srcname
./bootstrap.sh --with-toolset=gcc --with-icu --with-python=python3
# support for OpenMPI
echo "using mpi ;" >>project-config.jam
# boostbook is needed by quickbook
install -dm755 "$srcdir"/fakeinstall/share/boostbook
cp -a tools/boostbook/{xsl,dtd} "$srcdir"/fakeinstall/share/boostbook/
# install to $srcdir/fakeinstall in preparation for split packaging
./b2 install \
architecture=arm \
variant=release \
debug-symbols=off \
threading=multi \
runtime-link=shared \
link=shared,static \
toolset=gcc \
2021-12-13 00:32:42 +00:00
python=3.10 \
2021-06-10 12:48:30 +00:00
cflags="$CPPFLAGS $CFLAGS -fPIC -O3" \
cxxflags="$CPPFLAGS $CXXFLAGS -fPIC -O3" \
linkflags="$LDFLAGS" \
--layout=system \
$JOBS \
\
--prefix="$srcdir"/fakeinstall
2011-01-19 05:10:54 +00:00
}
package_boost() {
2021-06-10 12:48:30 +00:00
pkgdesc+=' (development headers)'
depends=("boost-libs=$pkgver")
optdepends=('python: for python bindings')
options=('staticlibs')
2014-01-09 22:37:29 +00:00
2021-06-10 12:48:30 +00:00
install -d "$pkgdir"/usr/lib
cp -a fakeinstall/lib/*.a "$pkgdir"/usr/lib/
cp -a fakeinstall/lib/cmake "$pkgdir"/usr/lib/
cp -a fakeinstall/{bin,include,share} "$pkgdir"/usr/
2014-01-09 22:37:29 +00:00
2021-06-10 12:48:30 +00:00
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" $_srcname/LICENSE_1_0.txt
2011-01-19 05:10:54 +00:00
}
package_boost-libs() {
2021-06-10 12:48:30 +00:00
pkgdesc+=' (runtime libraries)'
depends=('bzip2' 'zlib' 'icu' 'zstd')
optdepends=('openmpi: for mpi support')
provides=(libboost_atomic.so libboost_chrono.so libboost_container.so
libboost_context.so libboost_contract.so libboost_coroutine.so
libboost_date_time.so libboost_fiber.so libboost_filesystem.so
libboost_graph.so libboost_graph_parallel.so libboost_iostreams.so
libboost_json.so libboost_locale.so libboost_log.so libboost_log_setup.so
libboost_math_c99.so libboost_math_c99f.so libboost_math_c99l.so
libboost_math_tr1.so libboost_math_tr1f.so libboost_math_tr1l.so
2021-12-13 00:32:42 +00:00
libboost_mpi.so libboost_numpy310.so
2021-06-10 12:48:30 +00:00
libboost_prg_exec_monitor.so libboost_program_options.so
2021-12-13 00:32:42 +00:00
libboost_python310.so libboost_random.so
2021-06-10 12:48:30 +00:00
libboost_regex.so libboost_serialization.so
libboost_stacktrace_addr2line.so libboost_stacktrace_basic.so
libboost_stacktrace_noop.so libboost_system.so libboost_thread.so
libboost_timer.so libboost_type_erasure.so libboost_unit_test_framework.so
libboost_wave.so libboost_wserialization.so)
install -dm755 "$pkgdir"/usr/lib
cp -a fakeinstall/lib/*.so* "$pkgdir"/usr/lib/
# https://github.com/boostorg/mpi/issues/112
2021-12-13 00:32:42 +00:00
install -d "$pkgdir"/usr/lib/python3.10/site-packages/boost
touch "$pkgdir"/usr/lib/python3.10/site-packages/boost/__init__.py
python -m compileall -o 0 -o 1 -o 2 "$pkgdir"/usr/lib/python3.10/site-packages/boost
cp fakeinstall/lib/boost-python3.10/mpi.so \
"$pkgdir"/usr/lib/python3.10/site-packages/boost/mpi.so
2021-06-10 12:48:30 +00:00
# https://github.com/boostorg/python/issues/203#issuecomment-391477685
for _lib in python numpy; do
2021-12-13 00:32:42 +00:00
ln -srL "$pkgdir"/usr/lib/libboost_${_lib}3{10,}.so
2021-06-10 12:48:30 +00:00
done
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" $_srcname/LICENSE_1_0.txt
2011-01-19 05:10:54 +00:00
}
2018-09-21 18:59:40 +00:00
2021-06-10 12:48:30 +00:00
# vim:set ts=2 sw=2 et: