Upgrade libs/
[dragora.git] / recipes / libs / nettle / recipe
blob64a574590d0de06bdd152ccd028a8797d6dceb99
1 # Build recipe for nettle.
3 # Copyright (c) 2018 Markus Tornow, <tornow@riseup.net>.
4 # Copyright (c) 2018-2019, 2021 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
19 set -e
21 program=nettle
22 version=3.7
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=libs
28 tarname=${program}-${version}.tar.gz
30 # Remote source(s)
31 fetch=http://ftp.gnu.org/gnu/nettle/"$tarname"
33 description="
34 A low-level cryptographic library.
36 Nettle is a cryptographic library that is designed to fit easily in
37 more or less any context: in crypto toolkits for object-oriented
38 languages (C++, Python, Pike, ...), in applications like LSH or
39 GnuPG, or even in kernel space.
42 homepage=http://www.lysator.liu.se/~nisse/nettle/
43 license="GPLv2+, GPLv3+, LPGLv3+"
45 # Source documentation
46 docs="AUTHORS CONTRIBUTING.md COPYING* ChangeLog NEWS README nettle.html"
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 .
57     
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      --build="$(gcc -dumpmachine)"
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install
71     # Fix library permissions
72     chmod 755 \
73      "${destdir}/usr/lib${libSuffix}"/libhogweed.so.?.? \
74      "${destdir}/usr/lib${libSuffix}"/libnettle.so.?.?
76     # Compress info documents deleting index file for the package
77     if test -d "${destdir}/$infodir"
78     then
79         rm -f "${destdir}/${infodir}/dir"
80         lzip -9 "${destdir}/${infodir}"/*
81     fi
83     # Compress and link man pages (if needed)
84     if test -d "${destdir}/$mandir"
85     then
86         (
87             cd "${destdir}/$mandir"
88             find . -type f -exec lzip -9 {} +
89             find . -type l | while read -r file
90             do
91                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
92                 rm -- "$file"
93             done
94         )
95     fi
97     # Copy documentation
98     mkdir -p "${destdir}${docsdir}"
99     cp -p $docs "${destdir}${docsdir}/"