blob: f3c6b72c249703d717be0b6fff2db9e365b4946f (
plain)
1 # Description: C library for multiple-precision floating-point computations with correct rounding
2 # URL: https://www.mpfr.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: libgmp
5
6 name=libmpfr
7 version=4.1.1
8 release=1
9 source=(https://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz)
10
11 build() {
12 cd mpfr-${version%-*}
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 rm -r $PKG/usr/share
17 }
|