Update package version to 5.8.2
This commit is contained in:
@@ -1,9 +1,23 @@
|
|||||||
name: xz-utils
|
name: xz-utils
|
||||||
description: A complete C99 implementation of the .xz file format
|
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/
|
url: https://tukaani.org/xz/
|
||||||
license: GPL,LGPL
|
license: GPL,LGPL
|
||||||
architecture: any
|
architecture: any
|
||||||
depends: ["glibc"]
|
|
||||||
make_depends: ["bash","binutils","coreutils","diffutils","gcc","glibc","make"]
|
|
||||||
type: source
|
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
|
||||||
|
|||||||
@@ -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 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
|
# 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
|
# The build function is executed in the source directory
|
||||||
# This function is used to compile the source code
|
# This function is used to compile the source code
|
||||||
build() {
|
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
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -29,6 +19,7 @@ check() {
|
|||||||
# This function is used to move the compiled files into the output directory
|
# This function is used to move the compiled files into the output directory
|
||||||
package() {
|
package() {
|
||||||
make DESTDIR="$BPM_OUTPUT" install
|
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/
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user