recipes: compressors/xz: Upgraded to version 5.6.2
[dragora.git] / recipes / compressors / xz / recipe
blob6794cb7c269c6cfcab7dcc102cdf8a3fd0511c4a
1 # Build recipe for xz.
3 # Copyright (c) 2016-2019, 2021-2024 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Exit immediately on any error
18 set -e
20 program=xz
21 version=5.6.2
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=compressors
27 tarname=${program}-${version}.tar.bz2
29 # Remote source(s)
30 fetch=https://github.com/tukaani-project/xz/releases/download/v${version}/$tarname
32 description="
33 A (complex) compression utility based on the LZMA algorithm.
35 XZ Utils is free general-purpose data compression software with a high
36 compression ratio.  XZ Utils were written for POSIX-like systems, but
37 also work on some not-so-POSIX systems.
39 WARNING:
40   The usage of this utility to distribute files or backup your data
41 IS TOTALLY DISCOURAGED.  Limit its usage to decompression only,
42 since some maintainers refuse to distribute in a better format.
44 For more information, see https://lzip.nongnu.org/xz_inadequate.html
46 It is highly recommended the use of lzip(1) instead of xz(1).
49 homepage=https://tukaani.org/xz
50 license=GPLv2+
52 # Source documentation
53 docsdir="${docdir}/${program}-${version}"
55 build()
57     unpack "${tardir}/$tarname"
59     cd "$srcdir"
61     # Set sane permissions
62     chmod -R u+w,go-w,a+rX-s .
64     ./configure CPPFLAGS="$QICPPFLAGS" \
65     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
66      $configure_args \
67      --libdir=/usr/lib${libSuffix} \
68      --mandir=$mandir \
69      --docdir=$docsdir \
70      --enable-static=no \
71      --enable-shared=yes \
72      --disable-rpath \
73      --disable-lzmadec \
74      --disable-lzmainfo \
75      --disable-lzma-links \
76      --build="$(gcc -dumpmachine)"
78     make -j${jobs} V=1
79     make -j${jobs} DESTDIR="$destdir" install-strip
81     # Compress and link man pages (if needed)
82     if test -d "${destdir}/$mandir"
83     then
84         (
85             cd "${destdir}/$mandir"
86             find . -type f -exec lzip -9 {} +
87             find . -type l | while read -r file
88             do
89                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
90                 rm -- "$file"
91             done
92         )
93     fi