blob: 6f0c3530013abab4b2a4a1373072c245bb3481fc (
plain)
1 # Description: Multiple precision floating-point computation library with cumulative patches.
2 # URL: http://www.mpfr.org/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: acrux, acrux at homelinux dot org
5 # Depends on: libgmp
6
7 name=mpfr
8 version=2.3.1
9 release=1
10 source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.bz2)
11
12 build() {
13 cd mpfr-$version
14 #patch -p1 -i $SRC/patches
15 #autoreconf -i -f
16
17 ./configure \
18 --prefix=/usr \
19 --disable-static \
20 --disable-nls
21
22 make
23 make check
24 make DESTDIR=$PKG install
25 rm -r $PKG/usr/share
26 }
|