blob: 6caaa44526265581a8ee5e5338ade2be19261b73 (
plain)
1 # Description: C library for multiple-precision floating-point computations with correct rounding
2 # URL: http://www.mpfr.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: libgmp
5
6 name=libmpfr
7 version=2.3.2
8 release=1
9 source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.bz2)
10
11 build() {
12 cd mpfr-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 rm -r $PKG/usr/share
17 }
|