CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
udev:added forgotten patch
[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
b939af22 8version=3.1.1-p2
6dca1d21 9release=1
b939af22
VM
10source=(http://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz
11 $name-$version.patch.gz)
6dca1d21
JB
12
13build() {
3a054a5f 14 cd mpfr-${version%-*}
b939af22 15 gunzip -c $SRC/$name-$version.patch.gz | patch -p1
f696f171 16
6dca1d21
JB
17 ./configure --build=$CHOST \
18 --host=$CTARGET \
b1b926ea 19 --prefix=/usr \
3a054a5f
VM
20 --with-gmp-include=$CLFS/usr/include \
21 --with-gmp-lib=$CLFS/usr/lib
6dca1d21
JB
22
23 make
24 make DESTDIR=$PKG install
b1b926ea 25 rm -rf $PKG/usr/share
6dca1d21 26}