recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / libs / mpfr / recipe
blobc21fcbe973f1c58f0ae97f8036ca6ba599506d6a
1 # Build recipe for mpfr.
3 # Copyright (c) 2015-2019 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=mpfr
18 version=4.0.2
19 release=3
21 # Define a category for the output of the package name
22 pkgcategory=libs
24 tarname=${program}-${version}.tar.bz2
26 # Remote source(s)
27 fetch=http://www.mpfr.org/mpfr-current/$tarname
29 description="
30 Library for multiple-precision floating point.
32 The MPFR library is a C library for multiple-precision
33 floating-point computations with correct rounding.
36 homepage=http://www.mpfr.org
37 license="GPLv3+, LGPLv3+"
39 # Source documentation
40 docs="AUTHORS BUGS COPYING* ChangeLog NEWS PATCHES README TODO 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     # Apply patches from upstream
56     for file in "${worktree}"/patches/mpfr/*
57     do
58         if test -f "$file"
59         then
60             rm -f PATCHES
61             patch -p1 < "$file"
62         fi
63     done
65     # Avoid texinfo usage, we do not provide it on the early process
66     touch doc/mpfr.info
68     # Update for hosts based on musl
69     cp -f "${worktree}/archive/common/config.guess" config.guess
70     cp -f "${worktree}/archive/common/config.sub" config.sub
72     ./configure \
73     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
74     MAKEINFO="true" \
75      $configure_args \
76      --libdir=/usr/lib${libSuffix} \
77      --infodir=$infodir \
78      --docdir=$docsdir \
79      --enable-static \
80      --enable-shared \
81      --enable-thread-safe \
82      --build="$(cc -dumpmachine)"
84     make -j${jobs} MAKEINFO="true"
85     make -j${jobs} check
86     make -j${jobs} MAKEINFO="true" DESTDIR="$destdir" install-strip
88     # Compress info documents deleting index file for the package
89     if test -d "${destdir}/$infodir"
90     then
91         rm -f "${destdir}/${infodir}/dir"
92         lzip -9 "${destdir}/${infodir}"/* || true
93     fi
95     # Copy documentation
96     mkdir -p "${destdir}${docsdir}"
97     cp -p $docs "${destdir}${docsdir}"