# Description: Multiple precision floating-point computation library with cumulative patches.
# URL: http://www.mpfr.org/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: acrux, acrux at homelinux dot org
# Depends on: libgmp

name=mpfr
version=2.3.2
release=1
source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.bz2)

build() {
	cd mpfr-$version

	./configure \
		--prefix=/usr \
		--disable-static

	make
	#make check
	make DESTDIR=$PKG install
	rm -r $PKG/usr/share
}

