Update package version to 26.00

This commit is contained in:
2026-02-13 18:10:26 +02:00
parent 6e16596386
commit 14d8407bd8
2 changed files with 11 additions and 12 deletions
+11 -2
View File
@@ -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:
- [email protected]
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
-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://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() {