2008-09-17 10:28:59 +02:00
|
|
|
# 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
|
|
|
|
# Depends on: libgmp
|
|
|
|
|
|
|
|
name=libmpfr
|
2010-07-13 14:07:01 +02:00
|
|
|
version=3.0.0-p3
|
2009-12-02 17:28:12 +01:00
|
|
|
release=1
|
2010-07-13 18:51:20 +02:00
|
|
|
source=(http://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz
|
2010-07-13 14:07:01 +02:00
|
|
|
$name-$version.patch.gz)
|
2008-09-17 10:28:59 +02:00
|
|
|
|
|
|
|
build() {
|
2010-07-13 14:07:01 +02:00
|
|
|
cd mpfr-${version%-*}
|
|
|
|
gunzip -c $SRC/$name-$version.patch.gz | patch -p1
|
2008-09-17 10:28:59 +02:00
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share
|
|
|
|
}
|