From ca816ddea51810b0d67a03c7a8256cab5ab555fa Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 2 Oct 2025 15:18:59 +0300 Subject: [PATCH] Update package version to 2.0.1 --- pkg.info | 20 +++++++++++++++++--- source.sh | 10 ---------- 2 files changed, 17 insertions(+), 13 deletions(-) diff --git a/pkg.info b/pkg.info index e8aefe6..a9fe1c7 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,23 @@ name: gpgme description: A C wrapper library for GnuPG -version: 2.0.0 +version: 2.0.1 +revision: 1 url: https://www.gnupg.org/related_software/gpgme/ license: GPL2-or-later,LGPL2.1-or-later,MIT architecture: any -depends: ["gcc-libs", "glib", "glibc", "gnupg", "libassuan", "libgpg-error"] -make_depends: ["qt6-base"] type: source +depends: + - gcc-libs + - glib + - glibc + - gnupg + - libassuan + - libgpg-error +make_depends: + - bzip2 + - qt6-base +downloads: + - url: https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-${BPM_PKG_VERSION}.tar.bz2 + extract_to_bpm_source: true + extract_strip_components: 1 + checksum: 821ab0695c842eab51752a81980c92b0410c7eadd04103f791d5d2a526784966 diff --git a/source.sh b/source.sh index 70bcc8e..5eb73b1 100644 --- a/source.sh +++ b/source.sh @@ -2,16 +2,6 @@ # 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 -DOWNLOAD="https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-${BPM_PKG_VERSION}.tar.bz2" -FILENAME="${DOWNLOAD##*/}" - -# 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() { - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" -} - # The build function is executed in the source directory # This function is used to compile the source code build() {