CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
coreutils: update to 8.11
[crossrootfs.git] / libmpfr / Pkgfile
CommitLineData
6dca1d21
JB
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
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5# Depends on: libgmp
6
7name=libmpfr
99153f15 8version=3.0.1
6dca1d21 9release=1
99153f15 10source=(http://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz)
6dca1d21
JB
11
12build() {
3a054a5f
VM
13 cd mpfr-${version%-*}
14 gunzip -c $SRC/$name-$version.patch.gz | patch -p1
6dca1d21
JB
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
b1b926ea 17 --prefix=/usr \
3a054a5f
VM
18 --with-gmp-include=$CLFS/usr/include \
19 --with-gmp-lib=$CLFS/usr/lib
6dca1d21
JB
20
21 make
22 make DESTDIR=$PKG install
b1b926ea 23 rm -rf $PKG/usr/share
6dca1d21 24}