2006-11-21 22:03:23 +11:00
|
|
|
# Description: Multiple precision floating-point computation library with cumulative patches.
|
|
|
|
# URL: http://www.mpfr.org/
|
|
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
2007-04-01 18:44:58 +10:00
|
|
|
# Packager: acrux, acrux at homelinux dot org
|
2006-11-21 22:03:23 +11:00
|
|
|
# Depends on: libgmp
|
|
|
|
|
2007-04-01 18:44:58 +10:00
|
|
|
name=mpfr
|
2007-01-06 04:07:25 +11:00
|
|
|
version=2.2.1
|
2006-11-21 22:03:23 +11:00
|
|
|
release=1
|
2007-01-06 04:07:25 +11:00
|
|
|
source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.bz2)
|
2006-11-21 22:03:23 +11:00
|
|
|
build() {
|
2007-01-06 04:07:25 +11:00
|
|
|
cd mpfr-$version
|
2006-11-21 22:03:23 +11:00
|
|
|
autoreconf -i -f
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-shared \
|
|
|
|
--disable-nls
|
|
|
|
|
2007-04-01 18:44:58 +10:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2006-11-21 22:03:23 +11:00
|
|
|
rm -r $PKG/usr/share
|
|
|
|
}
|
|
|
|
|