Start mass upgrade
[dragora.git] / recipes / libs / libtasn1 / recipe
blob0df1851611191ac7f7129402c15d3956060e26fc
1 # Build recipe for libtasn1.
3 # Copyright (c) 2018-2019, 2021-2022 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=libtasn1
21 version=4.18.0
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://ftp.gnu.org/gnu/libtasn1/$tarname
32 description="
33 A highly portable C library that encodes or decodes an ASN.1 schema.
35 Libtasn1 is the ASN.1 library used by GnuTLS, p11-kit and some other
36 packages.  It was originally written by Fabio Fiorina, and now
37 maintained as a GNU package.  The goal of this implementation is to
38 be highly portable, and only require an ANSI C99 platform.
41 homepage=https://www.gnu.org/software/libtasn1
42 license="GPLv3+, LGPLv2+"
44 # Source documentation
45 docs="AUTHORS CONTRIBUTING.md COPYING ChangeLog NEWS README.md THANKS"
46 docsdir="${docdir}/${program}-${version}"
48 build()
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure \
58     CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
59      $configure_args \
60      --libdir=/usr/lib${libSuffix} \
61      --infodir=$infodir \
62      --mandir=$mandir \
63      --docdir=$docsdir \
64      --enable-static=no \
65      --enable-shared=yes \
66      --build="$(gcc -dumpmachine)"
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install-strip
71     # Compress info documents deleting index file for the package
72     if test -d "${destdir}/$infodir"
73     then
74         rm -f "${destdir}/${infodir}/dir"
75         lzip -9 "${destdir}/${infodir}"/*
76     fi
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}"