From 14d8407bd8a80c7bfa17986a80b1fcdf3590fff4 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 13 Feb 2026 18:08:16 +0200 Subject: [PATCH] Update package version to 26.00 --- pkg.info | 13 +++++++++++-- source.sh | 10 ---------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/pkg.info b/pkg.info index 1cf27cd..079a301 100644 --- a/pkg.info +++ b/pkg.info @@ -1,8 +1,17 @@ name: 7zip description: File archiver with a high compression ratio -version: 25.01 +version: "26.00" +revision: 1 url: https://www.7-zip.org/ license: LGPL-2.1-or-later,BSD-3-Clause,unRar +maintainers: + - enumdev@enumerated.dev architecture: any -depends: ["gcc-libs", "glibc"] type: source +depends: + - gcc-libs + - glibc +downloads: + - url: https://7-zip.org/a/7z${BPM_PKG_VERSION//./}-src.tar.xz + extract_to: ${BPM_SOURCE} + checksum: 3e596155744af055a77fc433c703d54e3ea9212246287b5b1436a6beac060f16 diff --git a/source.sh b/source.sh index 336c8ef..1e97f83 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://7-zip.org/a/7z${BPM_PKG_VERSION//./}-src.tar.xz" -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" -C "$BPM_SOURCE" -} - # The build function is executed in the source directory # This function is used to compile the source code build() {