recipes: kernel: Use a separate kernel for the i586 architecture
[dragora.git] / recipes / libs / libarchive / recipe
blob0049fdb1022da7a14ea5e0032af3729ab1ee4322
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.2
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=https://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 \
61     CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
62      $configure_args \
63      --libdir=/usr/lib${libSuffix} \
64      --mandir=$mandir \
65      --docdir=$docsdir \
66      --enable-static=no \
67      --enable-shared=yes \
68      --without-xml2 \
69      --without-openssl \
70      --with-nettle \
71      --build="$(gcc -dumpmachine)"
73     make -j${jobs} V=1
74     make -j${jobs} DESTDIR="$destdir" install
76     rmdir "${destdir}/usr/bin" 2> /dev/null || true;
78     # Compress and link man pages (if needed)
79     if test -d "${destdir}/$mandir"
80     then
81         (
82             cd "${destdir}/$mandir"
83             find . -type f -exec lzip -9 {} +
84             find . -type l | while read -r file
85             do
86                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
87                 rm -- "$file"
88             done
89         )
90     fi
92     # Copy documentation
93     mkdir -p "${destdir}/$docsdir"
94     cp -p $docs "${destdir}/$docsdir"