blob: 74604101d3d5c0e8c836c71689e9f527306dab15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
description="C library for multiple-precision floating-point computations with correct rounding."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.mpfr.org/"
depends=(libgmp)
name=libmpfr
version=3.0.0-p8
release=1
source=(http://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz libmpfr-$version.patch.gz)
build ()
{
cd mpfr-${version%-*};
pigz -dc $SRC/$name-$version.patch.gz | patch -p1;
./configure --prefix=$prefix --mandir=$mandir;
make;
make DESTDIR=$PKG install
}
|