From e6fe56459c86c4fa51c8334cc9676ff2a5e4823d Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 17 May 2026 16:18:34 +0300 Subject: [PATCH] Update package version to 2.5.20 --- pkg.info | 4 ++-- source.sh | 9 ++------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/pkg.info b/pkg.info index 10ebdde..5cdee44 100644 --- a/pkg.info +++ b/pkg.info @@ -1,6 +1,6 @@ name: gnupg description: Complete and free implementation of the OpenPGP standard -version: 2.5.19 +version: 2.5.20 revision: 1 url: https://www.gnupg.org/ license: BSD-2-Clause,BSD-3-Clause,BSD-4-Clause,CC0-1.0,GPL2-or-later,GPL3-or-later,LGPL2.1-or-later,LGPL3-or-later or GPL2-or-later,MIT,Unicode-TOU @@ -31,4 +31,4 @@ downloads: - url: https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-${BPM_PKG_VERSION}.tar.bz2 extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: 722aa8a426dd9b44e0d194b73bfee3a3e617d65674cd4d1d062e6df29f1788c6 + checksum: 6461266e99c308419a379abe6c356d54c214136c4589bd65951091138989ffc6 diff --git a/source.sh b/source.sh index c08e0bf..9aaf8bc 100644 --- a/source.sh +++ b/source.sh @@ -16,7 +16,7 @@ build() { # This function is used to run tests to verify the package has been compiled correctly check() { cd build - + make check } @@ -28,10 +28,5 @@ package() { make DESTDIR="$BPM_OUTPUT" install # Install package licenses - install -Dm644 "$BPM_SOURCE"/COPYING.CC0 "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.CC0 - install -Dm644 "$BPM_SOURCE"/COPYING.GPL2 "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.GPL2 - install -Dm644 "$BPM_SOURCE"/COPYING.LGPL3 "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.LGPL3 - install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING - install -Dm644 "$BPM_SOURCE"/COPYING.other "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.other - install -Dm644 "$BPM_SOURCE"/COPYING.LGPL21 "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.LGPL21 + install -Dm644 "$BPM_SOURCE"/COPYING* -t "$BPM_OUTPUT"/usr/share/licenses/gnupg/ }