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
+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/
}