website: start adding content to the manual
[dragora.git] / recipes / compressors / xz / recipe
blob9d1800b11a6f6fd5f566cb9c8ee95435461d2fd2
1 # Build recipe for xz.
3 # Copyright (c) 2016-2018 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 program=xz
18 version=5.2.4
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/compressors"
24 tarname=${program}-${version}.tar.bz2
26 # Remote source(s)
27 fetch=http://tukaani.org/xz/$tarname
29 description="
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.
36 WARNING:
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
47 license=GPLv2+
49 # Source documentation
50 docsdir="${docdir}/${program}-${version}"
52 build()
54     set -e
56     unpack "${tardir}/$tarname"
58     cd "$srcdir"
60     # Set sane permissions
61     chmod -R u+w,go-w,a+rX-s .
63     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
64      $configure_args \
65      --libdir=/usr/lib${libSuffix} \
66      --mandir=$mandir \
67      --docdir=$docsdir \
68      --enable-static \
69      --enable-shared \
70      --disable-lzmadec \
71      --disable-lzmainfo \
72      --disable-lzma-links \
73      --build="$(cc -dumpmachine)"
75     make -j${jobs} V=1
76     make -j${jobs} DESTDIR="$destdir" install-strip
78     # Compress and link man pages (if needed)
79     if test -d "${destdir}/$mandir"
80     then
81         (
82             cd "${destdir}/$mandir"
83             find . -type f -exec lzip -9 '{}' +
84             find . -type l | while read -r file
85             do
86                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
87                 rm -- "$file"
88             done
89         )
90     fi