2006-11-21 22:03:23 +11:00
|
|
|
# Description: Multiple precision floating-point computation library with cumulative patches.
|
|
|
|
# URL: http://www.mpfr.org/
|
2008-03-26 13:45:31 +11:00
|
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
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
|
2008-09-17 01:03:31 +10:00
|
|
|
version=2.3.2
|
2006-11-21 22:03:23 +11:00
|
|
|
release=1
|
2008-01-30 05:59:26 +11:00
|
|
|
source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.bz2)
|
2007-09-05 11:17:46 +10:00
|
|
|
|
2006-11-21 22:03:23 +11:00
|
|
|
build() {
|
2008-01-30 05:59:26 +11:00
|
|
|
cd mpfr-$version
|
2006-11-21 22:03:23 +11:00
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2008-09-17 01:03:31 +10:00
|
|
|
--disable-static
|
2006-11-21 22:03:23 +11:00
|
|
|
|
2007-04-01 18:44:58 +10:00
|
|
|
make
|
2008-09-17 01:03:31 +10:00
|
|
|
#make check
|
2007-04-01 18:44:58 +10:00
|
|
|
make DESTDIR=$PKG install
|
2006-11-21 22:03:23 +11:00
|
|
|
rm -r $PKG/usr/share
|
|
|
|
}
|
|
|
|
|