From c69abf4aa683a660b3fd2a938137014aab3471cc Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 19 Dec 2025 18:12:45 +0200 Subject: [PATCH] Update package version to 5.8.2 --- pkg.info | 20 +++++++++++++++++--- source.sh | 17 ++++------------- 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/pkg.info b/pkg.info index eed1277..367aebd 100644 --- a/pkg.info +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh index 36347d5..2806f14 100644 --- a/source.sh +++ b/source.sh @@ -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/ }