Upgrade libs/
[dragora.git] / recipes / libs / libarchive / recipe
blobeaa5da8e3a14a256fc10aacbf50605a9637183e1
1 # Build recipe for libarchive.
3 # Copyright (c) 2018-2019, 2021 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 # Exit immediately on any error
18 set -e
20 program=libarchive
21 version=3.5.1
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=libs
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=http://libarchive.org/downloads/$tarname
32 description="
33 Multi-format archive and compression library.
35 The libarchive project develops a portable, efficient C library that
36 can read and write streaming archives in a variety of formats.
38 It also includes implementations of the common tar, cpio, and zcat
39 command-line tools that use the libarchive library.
42 homepage=http:/libarchive.org
43 license=BSD
45 # Source documentation
46 docs="COPYING NEWS README.md"
47 docsdir="${docdir}/${program}-${version}"
49 build()
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
58     # Configure to make use of Expat and Nettle (instead of *ssl)
60     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
61      $configure_args \
62      --libdir=/usr/lib${libSuffix} \
63      --mandir=$mandir \
64      --docdir=$docsdir \
65      --enable-static=no \
66      --enable-shared=yes \
67      --without-xml2 \
68      --without-openssl \
69      --with-nettle \
70      --build="$(gcc -dumpmachine)"
72     make -j${jobs} V=1
73     make -j${jobs} DESTDIR="$destdir" install
75     rmdir "${destdir}/usr/bin" 2> /dev/null || true;
77     # Compress and link man pages (if needed)
78     if test -d "${destdir}/$mandir"
79     then
80         (
81             cd "${destdir}/$mandir"
82             find . -type f -exec lzip -9 {} +
83             find . -type l | while read -r file
84             do
85                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
86                 rm -- "$file"
87             done
88         )
89     fi
91     # Copy documentation
92     mkdir -p "${destdir}${docsdir}"
93     cp -p $docs "${destdir}${docsdir}"