34 lines
1.5 KiB
Bash
34 lines
1.5 KiB
Bash
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
|
|
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
|
|
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
|
|
|
|
prepare() {
|
|
cd "$BPM_SOURCE"/src/3rdparty/chromium
|
|
patch -Np1 -i "$BPM_WORKDIR"/glibc-2.42-sys_seccomp.patch
|
|
}
|
|
|
|
# The build function is executed in the source directory
|
|
# This function is used to compile the source code
|
|
build() {
|
|
export NINJAFLAGS=-j${BPM_JOBS}
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_MESSAGE_LOG_LEVEL=STATUS \
|
|
-DCMAKE_TOOLCHAIN_FILE=/usr/lib/cmake/Qt6/qt.toolchain.cmake \
|
|
-DQT_FEATURE_webengine_system_ffmpeg=ON \
|
|
-DQT_FEATURE_webengine_system_icu=ON \
|
|
-DQT_FEATURE_webengine_system_re2=ON \
|
|
-DQT_FEATURE_webengine_proprietary_codecs=ON \
|
|
-DQT_FEATURE_webengine_kerberos=ON \
|
|
-DQT_FEATURE_webengine_webrtc_pipewire=ON
|
|
cmake --build build
|
|
}
|
|
|
|
# The package function is executed in the source directory
|
|
# This function is used to move the compiled files into the output directory
|
|
package() {
|
|
DESTDIR="$BPM_OUTPUT" cmake --install build
|
|
|
|
# Install package license
|
|
install -Dm644 "$BPM_SOURCE"/src/3rdparty/chromium/LICENSE "$BPM_OUTPUT"/usr/share/licenses/qt6-webengine/LICENSE
|
|
}
|