serenity/Ports/boost/package.sh
Gunnar Beutner 8cc952b3dc Ports: Add port for the Boost C++ libraries
This currently requires GCC.
2022-10-24 15:49:39 +02:00

34 lines
776 B
Bash
Executable file

#!/usr/bin/env -S bash ../.port_include.sh
port='boost'
version='1.80.0'
useconfigure='true'
workdir="boost_${version//./_}"
depends=(
'zlib'
'bzip2'
'zstd'
'xz'
'libicu'
'python3'
)
files="https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${version//./_}.tar.bz2 boost_${version//./_}.tar.bz2 1e19565d82e43bc59209a168f5ac899d3ba471d55c7610c677d4ccf2c9c500c0"
auth_type='sha256'
bjamopts=(
'--user-config=user-config.jam'
'toolset=gcc'
'target-os=serenity'
)
configure() {
run ./bootstrap.sh --with-icu=${DESTDIR}/usr/local --prefix=${DESTDIR}/usr/local
echo "using gcc : : $CXX ;" >$workdir/user-config.jam
}
build() {
run ./b2 "${bjamopts[@]}"
}
install() {
run ./b2 "${bjamopts[@]}" install
}