recipes: gnupg/*: move libgpg-error and libgcrypt to recipes/libs/
[dragora.git] / recipes / libs / libgpg-error / recipe
blobee36218e2c40463e7abeaaaa96b0ab324028796a
1 # Build recipe for libgpg-error.
3 # Copyright (c) 2018 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=libgpg-error
18 version=1.32
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/gnupg"
24 tarname=${program}-${version}.tar.bz2
26 # Remote source(s)
27 fetch=http://www.gnupg.org/ftp/gcrypt/libgpg-error/$tarname
29 description="
30 Small library with error codes.
32 The libgpg-error package contains a library that defines common error
33 values for all GnuPG components.
36 homepage=http://www.gnupg.org
37 license="GPLv2+, LGPLv2.1"
39 # Source documentation
40 docs="AUTHORS COPYING* ChangeLog NEWS README THANKS VERSION"
41 docsdir="${docdir}/${program}-${version}"
43 build()
45     set -e
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
55      $configure_args \
56      --libdir=/usr/lib${libSuffix} \
57      --infodir=$infodir \
58      --mandir=$mandir \
59      --docdir=$docsdir \
60      --build="$(cc -dumpmachine)"
62     make -j${jobs} V=1
63     make -j${jobs} DESTDIR="$destdir" install-strip
65     # Compress info documents deleting index file for the package
66     if test -d "${destdir}/$infodir"
67     then
68         rm -f "${destdir}/${infodir}/dir"
69         lzip -9 "${destdir}/${infodir}"/*
70     fi
72     # Compress and link man pages (if needed)
73     if test -d "${destdir}/$mandir"
74     then
75         (
76             cd "${destdir}/$mandir"
77             find . -type f -exec lzip -9 '{}' +
78             find . -type l | while read -r file
79             do
80                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
81                 rm -- "$file"
82             done
83         )
84     fi
86     # Copy documentation
87     mkdir -p "${destdir}${docsdir}"
88     cp -p $docs "${destdir}${docsdir}"