aports/main/mpfr4/APKBUILD
2023-09-12 11:59:41 +00:00

54 lines
1.4 KiB
Plaintext

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=mpfr4
pkgver=4.2.1
pkgrel=0
# strip p value, the patches are separate and are on https://www.mpfr.org/mpfr-current/
_pkgver="${pkgver%_*}"
pkgdesc="multiple-precision floating-point library"
url="https://www.mpfr.org/"
arch="all"
license="LGPL-3.0-or-later"
makedepends_build="texinfo"
makedepends_host="gmp-dev"
makedepends="$makedepends_build $makedepends_host"
# mpfr is special because we cannot break ABI without first rebuild gcc.
# so we need be able to have multiple version of mpfr installed in parallel
# we also need be able to calculate bulid order from global scope, otherwise
# it is not possible to calculate build order til after package is built.
# Therfore we call -dev package mpfr-dev instead of mpfr4-dev with a
# provides=mpfr-dev
subpackages="$pkgname-doc mpfr-dev"
source="https://www.mpfr.org/mpfr-$_pkgver/mpfr-$_pkgver.tar.xz"
builddir="$srcdir/mpfr-$_pkgver"
provides="mpfr=$pkgver-r$pkgrel"
replaces="mpfr"
# secfixes:
# 4.2.1-r0:
# - CVE-2023-25139
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--with-sysroot="$CBUILDROOT" \
--prefix=/usr \
--enable-shared
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
bc68c0d755d5446403644833ecbb07e37360beca45f474297b5d5c40926df1efc3e2067eecffdf253f946288bcca39ca89b0613f545d46a9e767d1d4cf358475 mpfr-4.2.1.tar.xz
"