CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
rc: removed lo/net support from rc.conf
[crossrootfs.git] / libmpfr / Pkgfile
index a10ee4180591fc5496d073fa90f15e961a1f071f..1fb52f4337243448356e4df202f2a78518029186 100644 (file)
@@ -1,21 +1,23 @@
 # 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
-# Ach Maintainer: CRUX ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
 # Depends on: libgmp
 
 name=libmpfr
-version=2.4.2
+version=3.1.2-p10
 release=1
-source=(http://www.mpfr.org/mpfr-$version/mpfr-$version.tar.bz2)
+source=(http://www.mpfr.org/mpfr-${version%-*}/mpfr-${version%-*}.tar.xz
+        $name-$version.patch.gz)
 
 build() {
-  cd mpfr-$version
-
+  cd mpfr-${version%-*}
+  gunzip -c $SRC/$name-$version.patch.gz | patch -p1
   ./configure --build=$CHOST \
               --host=$CTARGET \
               --prefix=/usr \
-              --with-gmp=$CLFS
+              --with-gmp-include=$CLFS/usr/include \
+              --with-gmp-lib=$CLFS/usr/lib
 
   make
   make DESTDIR=$PKG install