3 # Copyright (c) 2016-2019 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.
21 # Define a category for the output of the package name
22 pkgcategory=compressors
24 tarname=${program}-${version}.tar.bz2
27 fetch=http://tukaani.org/xz/$tarname
30 A (complex) compression utility based on the LZMA algorithm.
32 XZ Utils is free general-purpose data compression software with a high
33 compression ratio. XZ Utils were written for POSIX-like systems, but
34 also work on some not-so-POSIX systems.
37 The usage of this utility to distribute files or backup your data
38 IS TOTALLY DISCOURAGED. Limit its usage to decompression only,
39 since some maintainers refuse to distribute in a better format.
41 For more information, see http://lzip.nongnu.org/xz_inadequate.html
43 It is highly recommended the use of lzip(1) instead of xz(1).
46 homepage=http://tukaani.org/xz
49 # Source documentation
50 docsdir="${docdir}/${program}-${version}"
56 unpack "${tardir}/$tarname"
60 # Set sane permissions
61 chmod -R u+w,go-w,a+rX-s .
63 ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
65 --libdir=/usr/lib${libSuffix} \
73 --disable-lzma-links \
74 --build="$(gcc -dumpmachine)"
77 make -j${jobs} DESTDIR="$destdir" install-strip
79 # Compress and link man pages (if needed)
80 if test -d "${destdir}/$mandir"
83 cd "${destdir}/$mandir"
84 find . -type f -exec lzip -9 '{}' +
85 find . -type l | while read -r file
87 ln -sf "$(readlink -- "$file").lz" "${file}.lz"