CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
make: updated to 4.0
[crossrootfs.git] / libgmp / Pkgfile
index 1f13b1cc00234c7cdb8ebcc5888ed9248803ca48..124712a32e8c2461e34a76841c52160c342cd3ad 100644 (file)
@@ -5,18 +5,20 @@
 # Depends on:
 
 name=libgmp
-version=5.0.2
+version=6.0.0a
 release=1
-source=(ftp://ftp.gnu.org/gnu/gmp/gmp-$version.tar.bz2)
+source=(ftp://ftp.gmplib.org/pub/gmp-${version%a}/gmp-$version.tar.xz \
+        gmp.h)
 
 build() {
-  cd gmp-$version
+  cd gmp-${version%a}
   ./configure --build=$CHOST \
               --host=$CTARGET \
               --prefix=/usr \
               --enable-cxx
-
   make
   make DESTDIR=$PKG install
+  mv $PKG/usr/include/gmp{,-32}.h
+  install -m 0644 $SRC/gmp.h $PKG/usr/include/
   rm -r $PKG/usr/share
 }