# 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 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu # Depends on: libgmp name=libmpfr version=3.1.1-p2 release=1 source=(http://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz $name-$version.patch.gz) build() { cd mpfr-${version%-*} gunzip -c $SRC/$name-$version.patch.gz | patch -p1 ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ --with-gmp-include=$CLFS/usr/include \ --with-gmp-lib=$CLFS/usr/lib make make DESTDIR=$PKG install rm -rf $PKG/usr/share }