strip remaining libraries for the distribution size
[dragora.git] / recipes / compressors / xz / recipe
blob787fe7ad69205a462f832536892411bbbc5347a0
1 # Build recipe for xz.
3 # Copyright (c) 2016-2017 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.3
19 release=1
21 tarname=${program}-${version}.tar.bz2
23 # Remote source(s)
24 fetch=http://tukaani.org/xz/$tarname
26 description="
27 A (complex) compression utility based on the LZMA algorithm.
29 XZ Utils is free general-purpose data compression software with a high
30 compression ratio.  XZ Utils were written for POSIX-like systems, but
31 also work on some not-so-POSIX systems.
33 WARNING:
34   The usage of this utility to distribute files or backup your data
35 IS TOTALLY DISCOURAGED.  Limit its usage to decompression only,
36 since some maintainers refuse to distribute in a better format.
38 For more information, see http://lzip.nongnu.org/xz_inadequate.html
40 It is highly recommended the use of lzip(1) instead of xz(1).
43 homepage=http://tukaani.org/xz
44 license=GPLv2+
46 # Source documentation
47 docsdir="${docdir}/${program}-${version}"
49 build()
51     set -e
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --libdir=/usr/lib${libSuffix} \
60      --mandir=$mandir \
61      --docdir=$docsdir \
62      --enable-static \
63      --enable-shared \
64      --disable-lzmadec \
65      --disable-lzmainfo \
66      --disable-lzma-links \
67      --build="$(cc -dumpmachine)"
69     make -j${jobs} V=1
70     make -j${jobs} DESTDIR="$destdir" install-strip
72     # Compress and link man pages (if needed)
73     if test -d "${destdir}/$mandir"
74     then
75         (
76             cd "${destdir}/$mandir"
77             find . -type f -exec lzip -9 '{}' +
78             find . -type l | while read -r file
79             do
80                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
81                 rm -- "$file"
82             done
83         )
84     fi