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
24 # Define a category for the output of the package name
27 tarname=${program}-${version}.tar.gz
30 fetch=http://libarchive.org/downloads/$tarname
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
45 # Source documentation
46 docs="COPYING NEWS README.md"
47 docsdir="${docdir}/${program}-${version}"
51 unpack "${tardir}/$tarname"
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" \
62 --libdir=/usr/lib${libSuffix} \
70 --build="$(gcc -dumpmachine)"
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"
81 cd "${destdir}/$mandir"
82 find . -type f -exec lzip -9 {} +
83 find . -type l | while read -r file
85 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
92 mkdir -p "${destdir}${docsdir}"
93 cp -p $docs "${destdir}${docsdir}"