recipes: Remove extra stripping from install-strip automake target
[dragora.git] / recipes / libs / mpfr / recipe
bloba66fdecd673a40a5b47a73f884395a44c1443bd2
1 # Build recipe for mpfr.
3 # Copyright (c) 2015-2020 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 # Exit immediately on any error
18 set -e
20 program=mpfr
21 version=4.1.0
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=libs
27 tarname=${program}-${version}.tar.bz2
29 # Remote source(s)
30 fetch=https://www.mpfr.org/mpfr-current/$tarname
32 description="
33 Library for multiple-precision floating point.
35 The MPFR library is a C library for multiple-precision
36 floating-point computations with correct rounding.
39 homepage=https://www.mpfr.org
40 license="GPLv3+, LGPLv3+"
42 # Source documentation
43 docs="AUTHORS BUGS COPYING* ChangeLog NEWS PATCHES README TODO VERSION"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     # Apply patches from upstream
57     for file in "${worktree}"/patches/mpfr/*
58     do
59         if test -f "$file"
60         then
61             rm -f PATCHES
62             patch -p1 < "$file"
63         fi
64     done
66     # Avoid texinfo usage, we do not provide it on the early process
67     touch doc/mpfr.info
69     ./configure \
70     CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
71     MAKEINFO="true" \
72      $configure_args \
73      --libdir=/usr/lib${libSuffix} \
74      --infodir=$infodir \
75      --docdir=$docsdir \
76      --enable-static \
77      --enable-shared \
78      --enable-thread-safe \
79      --build="$(gcc -dumpmachine)"
81     make -j${jobs} MAKEINFO="true"
82     make -j${jobs} check
83     make -j${jobs} MAKEINFO="true" DESTDIR="$destdir" install
85     # Compress info documents deleting index file for the package
86     if test -d "${destdir}/$infodir"
87     then
88         rm -f "${destdir}/${infodir}/dir"
89         lzip -9 "${destdir}/${infodir}"/* || true
90     fi
92     # Copy documentation
93     mkdir -p "${destdir}${docsdir}"
94     cp -p $docs "${destdir}${docsdir}"