core/libmpfr/Pkgfile

18 lines
460 B
Plaintext
Raw Permalink Normal View History

2008-09-17 10:28:59 +02:00
# Description: C library for multiple-precision floating-point computations with correct rounding
# URL: http://www.mpfr.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libgmp
name=libmpfr
2019-02-02 14:56:23 +01:00
version=4.0.2
2009-12-02 17:28:12 +01:00
release=1
2018-01-06 17:05:57 +01:00
source=(http://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz)
2008-09-17 10:28:59 +02:00
build() {
2013-10-15 18:48:03 +02:00
cd mpfr-${version%-*}
2008-09-17 10:28:59 +02:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}