recipes: libs/alsa-lib: upgraded to version 1.1.8
[dragora.git] / recipes / libs / nettle / recipe
blob91f5a68417fe08c3b798f8b01fc64b83d965a598
1 # Build recipe for nettle.
3 # Copyright (c) 2018 Markus Tornow, <tornow@riseup.net>.
4 # Copyright (c) 2018 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 program=nettle
19 version=3.4.1
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/libs"
25 tarname=${program}-${version}.tar.gz
27 # Remote source(s)
28 fetch=http://ftp.gnu.org/gnu/nettle/"$tarname"
30 description="
31 A low-level cryptographic library.
33 Nettle is a cryptographic library that is designed to fit easily in
34 more or less any context: in crypto toolkits for object-oriented
35 languages (C++, Python, Pike, ...), in applications like LSH or
36 GnuPG, or even in kernel space.
39 homepage=http://www.lysator.liu.se/~nisse/nettle/
40 license="GPLv2+, GPLv3+, LPGLv3+"
42 # Source documentation
43 docs="AUTHORS CONTRIBUTING.md COPYING* ChangeLog NEWS README TODO nettle.html"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
56     
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --libdir=/usr/lib${libSuffix} \
60      --infodir=$infodir \
61      --mandir=$mandir \
62      --docdir=$docsdir \
63      --enable-static=no \
64      --enable-shared=yes \
65      --build="$(cc -dumpmachine)"
67     make -j${jobs} V=1
68     make -j${jobs} DESTDIR="$destdir" install
70     # Compress info documents deleting index file for the package
71     if test -d "${destdir}/$infodir"
72     then
73         rm -f "${destdir}/${infodir}/dir"
74         lzip -9 "${destdir}/${infodir}"/*
75     fi
77     # Compress and link man pages (if needed)
78     if test -d "${destdir}/$mandir"
79     then
80         (
81             cd "${destdir}/$mandir"
82             find . -type f -exec lzip -9 '{}' +
83             find . -type l | while read -r file
84             do
85                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
86                 rm -- "$file"
87             done
88         )
89     fi
91     # Copy documentation
92     mkdir -p "${destdir}${docsdir}"
93     cp -p $docs "${destdir}${docsdir}/"