recipes: libs/lzlib: do not run ldconfig when installing
[dragora.git] / recipes / libs / lzlib / recipe
blob5afa4b3ffd913f8720ef0f237a245d1a07d94952
1 # Build recipe for lzlib.
3 # Copyright (c) 2017-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.
17 program=lzlib
18 version=1.11
19 release=2
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/libs"
24 tarname=${program}-${version}.tar.lz
26 # Remote source(s)
27 fetch=http://download.savannah.gnu.org/releases/lzip/lzlib/$tarname
29 homepage=http://lzip.nongnu.org/lzlib.html
30 license=GPLv2+
32 description="
33 A data compression library for the lzip format.
35 Lzlib is a data compression library providing in-memory LZMA
36 compression and decompression functions, including integrity checking
37 of the decompressed data.  The compressed data format used by the
38 library is the lzip format.  Lzlib is written in C.
40 For more information, visit: $homepage
43 # Source documentation
44 docs="AUTHORS COPYING ChangeLog NEWS README"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     set -e
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
58     ./configure CFLAGS+="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
59      $configure_args \
60      --libdir=/usr/lib${libSuffix} \
61      --infodir=$infodir \
62      --mandir=$mandir \
63      --disable-ldconfig \
64      --build="$(cc -dumpmachine)"
66     make -j${jobs}
67     make -j${jobs} DESTDIR="$destdir" install
69     # To install minilzip
70     make -j${jobs} DESTDIR="$destdir" install-bin
72     # Compress info documents
74     rm -f "${destdir}/${infodir}/dir";  # Redundancy
75     lzip -9 "${destdir}/${infodir}/lzlib.info"
77     # Copy documentation
78     mkdir -p "${destdir}${docsdir}"
79     cp -p $docs "${destdir}${docsdir}"