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
25 # Define a category for the output of the package name
28 tarname=${program}-${version}.tar.gz
31 fetch=http://ftp.gnu.org/gnu/nettle/"$tarname"
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}"
51 unpack "${tardir}/$tarname"
55 # Set sane permissions
56 chmod -R u+w,go-w,a+rX-s .
58 ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
60 --libdir=/usr/lib${libSuffix} \
66 --build="$(gcc -dumpmachine)"
69 make -j${jobs} DESTDIR="$destdir" install
71 # Fix library permissions
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"
79 rm -f "${destdir}/${infodir}/dir"
80 lzip -9 "${destdir}/${infodir}"/*
83 # Compress and link man pages (if needed)
84 if test -d "${destdir}/$mandir"
87 cd "${destdir}/$mandir"
88 find . -type f -exec lzip -9 {} +
89 find . -type l | while read -r file
91 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
98 mkdir -p "${destdir}${docsdir}"
99 cp -p $docs "${destdir}${docsdir}/"