contrib/mpfr/Pkgfile

25 lines
531 B
Plaintext
Raw Normal View History

# 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
2007-04-01 10:44:58 +02:00
# Packager: acrux, acrux at homelinux dot org
# Depends on: libgmp
2007-04-01 10:44:58 +02:00
name=mpfr
2007-01-05 18:07:25 +01:00
version=2.2.1
release=1
2007-01-05 18:07:25 +01:00
source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.bz2)
build() {
2007-01-05 18:07:25 +01:00
cd mpfr-$version
autoreconf -i -f
./configure \
--prefix=/usr \
--enable-shared \
--disable-nls
2007-04-01 10:44:58 +02:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}