From 2079f4f5733c17d0c0a89a5996fd2f9c1c6d0b31 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 3 Oct 2025 20:30:10 +0300 Subject: [PATCH] Update package version to 6.9.3 --- pkg.info | 17 ++++++++++++++--- source.sh | 10 +--------- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/pkg.info b/pkg.info index 4f57791..f0ad9d3 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,20 @@ name: qt6-networkauth description: Qt network authenticators -version: 6.9.2 +version: 6.9.3 +revision: 1 url: https://www.qt.io license: GPL3-only architecture: any -depends: ["gcc-libs","glibc","qt6-base"] -make_depends: ["cmake"] type: source +depends: + - gcc-libs + - glibc + - qt6-base +make_depends: + - cmake +downloads: + - url: https://code.qt.io/qt/qtnetworkauth.git + type: git + extract_to_bpm_source: true + git_branch: v${BPM_PKG_VERSION} + checksum: b0ab508489ed0dc92916792cac3c20b6b44ab73b diff --git a/source.sh b/source.sh index 4a19204..7778364 100644 --- a/source.sh +++ b/source.sh @@ -2,18 +2,10 @@ # 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 -REPO="https://code.qt.io/qt/qtnetworkauth.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" -} - # The build function is executed in the source directory # This function is used to compile the source code build() { - cmake -B build -DCMAKE_MESSAGE_LOG_LEVEL=STATUS + cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_MESSAGE_LOG_LEVEL=STATUS cmake --build build }