Rebuild with icu 77.1

This commit is contained in:
2025-09-13 11:25:09 +03:00
parent 64f891eaf0
commit 844fe2b850
2 changed files with 9 additions and 12 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
name: qt6-base
description: Cross-platform application development framework for creating graphical user interfaces
version: 6.6.2
revision: 3
revision: 4
url: https://www.qt.io/
license: FDL,GPL3,LGPL3,custom
architecture: any
depends: ["brotli", "dbus", "double-conversion", "elogind", "fontconfig", "freetype2", "gcc-libs", "glib", "glibc", "harfbuzz", "icu", "krb5", "cups", "libdrm", "libice", "libinput", "libjpeg-turbo", "libpng", "libxi", "libxkbcommon", "mesa", "openssl", "pcre2", "shared-mime-info", "sqlite", "vulkan-headers", "xcb-util-cursor", "xcb-util-image", "xcb-util-keysyms", "xcb-util-renderutil", "xcb-util-wm", "zlib", "zstd"]
optional_depends: ["gdk-pixbuf", "gtk3", "pango", "perl"]
make_depends: ["alsa-lib", "git", "gtk3", "libpulse", "vulkan-headers"]
make_depends: ["alsa-lib", "cmake", "git", "gtk3", "libpulse", "vulkan-headers"]
type: source
+7 -10
View File
@@ -7,7 +7,7 @@ REPO="https://code.qt.io/qt/qtbase.git"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
git clone --branch "v${BPM_PKG_VERSION}" "$REPO" "$BPM_SOURCE"
git clone --depth 1 --branch "v${BPM_PKG_VERSION}" "$REPO" "$BPM_SOURCE"
# Patches from Arch Linux
cd "$BPM_SOURCE"
@@ -18,10 +18,7 @@ prepare() {
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
mkdir build
cd build
cmake -G Ninja \
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DINSTALL_BINDIR=lib/qt6/bin \
@@ -38,15 +35,15 @@ build() {
-DFEATURE_system_sqlite=ON \
-DFEATURE_system_xcb_xinput=ON \
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON \
-DCMAKE_MESSAGE_LOG_LEVEL=STATUS ..
ninja
-DCMAKE_MESSAGE_LOG_LEVEL=STATUS
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() {
cd build
DESTDIR="$BPM_OUTPUT" ninja install
DESTDIR="$BPM_OUTPUT" cmake --install build
# Install package licenses
install -Dm644 "$BPM_SOURCE"/LICENSES/* -t "$BPM_OUTPUT"/usr/share/licenses/qt6-base/
}