core/libmpfr/Pkgfile

18 lines
462 B
Plaintext

# Description: C library for multiple-precision floating-point computations with correct rounding
# URL: https://www.mpfr.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libgmp
name=libmpfr
version=4.1.0
release=1
source=(https://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz)
build() {
cd mpfr-${version%-*}
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}