24 lines
538 B
Plaintext
24 lines
538 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
|
|
# Maintainer: acrux, acrux at homelinux dot org
|
|
# Depends on: libgmp
|
|
|
|
name=libmpfr
|
|
version=2.2.1
|
|
release=1
|
|
source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.bz2)
|
|
build() {
|
|
cd mpfr-$version
|
|
autoreconf -i -f
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--disable-nls
|
|
|
|
make && make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share
|
|
}
|
|
|