sources: SOURCELIST.txt: sort list
[dragora.git] / recipes / libs / libarchive / recipe
blob036d0bea8ea0247ced423983833ce7f517ed5f27
1 # Build recipe for libarchive.
3 # Copyright (c) 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=libarchive
18 version=3.3.3
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/libs"
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://libarchive.org/downloads/$tarname
29 description="
30 Multi-format archive and compression library.
32 The libarchive project develops a portable, efficient C library that
33 can read and write streaming archives in a variety of formats.
35 It also includes implementations of the common tar, cpio, and zcat
36 command-line tools that use the libarchive library.
39 homepage=http:/libarchive.org
40 license=BSD
42 # Source documentation
43 docs="COPYING NEWS README.md"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --libdir=/usr/lib${libSuffix} \
60      --mandir=$mandir \
61      --docdir=$docsdir \
62      --enable-static=no \
63      --enable-shared=yes \
64      --without-xml2 \
65      --without-nettle \
66      --build="$(cc -dumpmachine)"
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install
71     rmdir "${destdir}/usr/bin" 2> /dev/null || true;
73     # Compress and link man pages (if needed)
74     if test -d "${destdir}/$mandir"
75     then
76         (
77             cd "${destdir}/$mandir"
78             find . -type f -exec lzip -9 '{}' +
79             find . -type l | while read -r file
80             do
81                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
82                 rm -- "$file"
83             done
84         )
85     fi
87     # Copy documentation
88     mkdir -p "${destdir}${docsdir}"
89     cp -p $docs "${destdir}${docsdir}"