recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / libs / mpc / recipe
blob9a0490c327ca854158b2ae5f65e7944ed97b85c0
1 # Build recipe for mpc.
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=mpc
18 version=1.1.0
19 release=2
21 # Define a category for the output of the package name
22 pkgcategory=libs
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=ftp://ftp.gnu.org/gnu/mpc/$tarname
29 description="
30 Library for the arithmetic of complex numbers.
32 The MPC package contains a library for the arithmetic of complex
33 numbers with arbitrarily high precision and correct rounding of
34 the result.
37 homepage=http://www.multiprecision.org
38 license=LGPLv3+
40 # Source documentation
41 docs="AUTHORS COPYING* ChangeLog NEWS README TODO"
42 docsdir="${docdir}/${program}-${version}"
44 build()
46     set -e
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Update for hosts based on musl
53     cp -f "${worktree}/archive/common/config.guess" config.guess
54     cp -f "${worktree}/archive/common/config.sub" config.sub
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
60      $configure_args \
61      --libdir=/usr/lib${libSuffix} \
62      --infodir=$infodir \
63      --with-gmp=/usr \
64      --enable-static \
65      --enable-shared \
66      --build="$(cc -dumpmachine)"
68     make -j${jobs}
69     make -j${jobs} check
70     make -j${jobs} DESTDIR="$destdir" install-strip
72     # Compress info documents deleting index file for the package
73     if test -d "${destdir}/$infodir"
74     then
75         rm -f "${destdir}/${infodir}/dir"
76         lzip -9 "${destdir}/${infodir}"/*
77     fi
79     # Copy documentation
80     mkdir -p "${destdir}${docsdir}"
81     cp -p $docs "${destdir}${docsdir}"