# Description: C library for multiple-precision floating-point computations with correct rounding
# URL: http://www.mpfr.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Ach Maintainer: CRUX ARM System Team
# Depends on: libgmp

name=libmpfr
version=2.4.1
release=1
source=(http://www.mpfr.org/mpfr-$version/mpfr-$version.tar.bz2 \
        mpfr-$version-branch_update-1.patch)

build() {
  cd mpfr-$version
  patch -p1 -i $SRC/mpfr-$version-branch_update-1.patch
  ./configure --build=$CHOST \
              --host=$CTARGET \
              --prefix=/usr

  make
  make DESTDIR=$PKG install
  rm -r $PKG/usr/share
}