contrib/mpfr/Pkgfile
2007-10-24 17:28:03 +10:00

29 lines
632 B
Plaintext

# 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
# Packager: acrux, acrux at homelinux dot org
# Depends on: libgmp
name=mpfr
version=2.3.0-p1
release=1
source=(http://www.mpfr.org/mpfr-current/mpfr-${version%%-*}.tar.bz2 \
http://www.mpfr.org/mpfr-current/patches)
build() {
cd mpfr-${version%%-*}
patch -p1 -i $SRC/patches
#autoreconf -i -f
./configure \
--prefix=/usr \
--disable-static \
--disable-nls
make
make check
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}