contrib/mpfr/Pkgfile

28 lines
572 B
Plaintext
Raw Normal View History

# Description: Multiple precision floating-point computation library with cumulative patches.
# URL: http://www.mpfr.org/
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2007-04-01 10:44:58 +02:00
# Packager: acrux, acrux at homelinux dot org
# Depends on: libgmp
2007-04-01 10:44:58 +02:00
name=mpfr
2008-01-29 19:59:26 +01:00
version=2.3.1
release=1
2008-01-29 19:59:26 +01:00
source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.bz2)
2007-09-05 03:17:46 +02:00
build() {
2008-01-29 19:59:26 +01:00
cd mpfr-$version
#patch -p1 -i $SRC/patches
2007-08-31 03:19:55 +02:00
#autoreconf -i -f
./configure \
--prefix=/usr \
--disable-static \
--disable-nls
2007-04-01 10:44:58 +02:00
make
2007-08-31 03:19:55 +02:00
make check
2007-04-01 10:44:58 +02:00
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}