dragora-installer: apply fixes and minor changes
[dragora.git] / recipes / networking / p11-kit / recipe
blobf3f28a331a6f9170bfa9ad3fc372a31775e20e23
1 # Build recipe for p11-kit.
3 # Copyright (c) 2018-2019 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=p11-kit
18 version=0.23.17
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/networking"
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://github.com/p11-glue/p11-kit/releases/download/${version}/$tarname
29 description="
30 Provides a way to load and enumerate PKCS#11 modules.
32 Provides a way to load and enumerate PKCS#11 modules.  Provides a
33 standard configuration setup for installing PKCS#11 modules in such a
34 way that they're discoverable.
36 Also solves problems with coordinating the use of PKCS#11 by different
37 components or libraries living in the same process.
40 homepage=http://p11-glue.github.io/p11-glue/p11-kit.html
41 license="BSD 3-clause"
43 # Source documentation
44 docs="AUTHORS COPYING ChangeLog HACKING NEWS README"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     set -e
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
58     ./configure 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      --enable-debug=no \
67      --disable-rpath \
68      --with-trust-paths=/etc/pki/anchors \
69      --without-systemd \
70      --build="$(cc -dumpmachine)"
72     make -j${jobs} V=1
73     make -j${jobs} DESTDIR="$destdir" install-strip
75     # Compress info documents deleting index file for the package
76     if test -d "${destdir}/$infodir"
77     then
78         rm -f "${destdir}/${infodir}/dir"
79         lzip -9 "${destdir}/${infodir}"/*
80     fi
82     # Compress and link man pages (if needed)
83     if test -d "${destdir}/$mandir"
84     then
85         (
86             cd "${destdir}/$mandir"
87             find . -type f -exec lzip -9 '{}' +
88             find . -type l | while read -r file
89             do
90                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
91                 rm -- "$file"
92             done
93         )
94     fi
96     # Copy documentation
97     mkdir -p "${destdir}${docsdir}"
98     cp -p $docs "${destdir}${docsdir}"