mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
2ea65e512c
The `Boost.System` patch was removed, as it no longer applies.
36 lines
791 B
Bash
Executable file
36 lines
791 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='boost'
|
|
version='1.83.0'
|
|
useconfigure='true'
|
|
workdir="boost_${version//./_}"
|
|
depends=(
|
|
'zlib'
|
|
'bzip2'
|
|
'zstd'
|
|
'xz'
|
|
'libicu'
|
|
)
|
|
files=(
|
|
"https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${version//./_}.tar.bz2#6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e"
|
|
)
|
|
bjamopts=(
|
|
'--user-config=user-config.jam'
|
|
'toolset=gcc'
|
|
'target-os=serenity'
|
|
)
|
|
|
|
configure() {
|
|
run ./bootstrap.sh \
|
|
--with-icu="${DESTDIR}/usr/local" \
|
|
--prefix="${DESTDIR}/usr/local" \
|
|
--without-libraries='python'
|
|
echo "using gcc : : ${CXX} ;" > "${workdir}/user-config.jam"
|
|
}
|
|
|
|
build() {
|
|
run ./b2 "${bjamopts[@]}"
|
|
}
|
|
|
|
install() {
|
|
run ./b2 "${bjamopts[@]}" install
|
|
}
|