Update package version to 2.0.1

This commit is contained in:
2025-10-02 15:18:59 +03:00
parent 8de9b8915a
commit ca816ddea5
2 changed files with 17 additions and 13 deletions
+17 -3
View File
@@ -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
-10
View File
@@ -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() {