CRUX-ARM : Home

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