Update package version to 5.8.2

This commit is contained in:
2025-12-19 18:12:45 +02:00
parent bbb75a34df
commit c69abf4aa6
2 changed files with 21 additions and 16 deletions
+17 -3
View File
@@ -1,9 +1,23 @@
name: xz-utils
description: A complete C99 implementation of the .xz file format
version: 5.8.1
version: 5.8.2
revision: 1
url: https://tukaani.org/xz/
license: GPL,LGPL
architecture: any
depends: ["glibc"]
make_depends: ["bash","binutils","coreutils","diffutils","gcc","glibc","make"]
type: source
depends:
- glibc
make_depends:
- binutils
- coreutils
- diffutils
- doxygen
- gcc
- glibc
- make
downloads:
- url: https://github.com/tukaani-project/xz/releases/download/v${BPM_PKG_VERSION}/xz-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 890966ec3f5d5cc151077879e157c0593500a522f413ac50ba26d22a9a145214
+4 -13
View File
@@ -2,20 +2,10 @@
# 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://github.com/tukaani-project/xz/releases/download/v${BPM_PKG_VERSION}/xz-${BPM_PKG_VERSION}.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" --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() {
./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/xz-utils
./configure --prefix=/usr --docdir=/usr/share/doc/xz-utils --enable-doxygen --disable-static --disable-rpath
make
}
@@ -29,6 +19,7 @@ check() {
# This function is used to move the compiled files into the output directory
package() {
make DESTDIR="$BPM_OUTPUT" install
mkdir -p "$BPM_OUTPUT"/usr/share/licenses/xz-utils/
cp COPYING* "$BPM_OUTPUT"/usr/share/licenses/xz-utils/
# Install package licenses
install -Dm644 "$BPM_SOURCE"/COPYING* -t "$BPM_OUTPUT"/usr/share/licenses/xz-utils/
}