CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libgmp: updated to 6.1.1
[ports/core-arm64.git] / libgmp / Pkgfile
CommitLineData
f8d72a05
VM
1# Description: Free library for arbitrary precision arithmetic
2# URL: http://gmplib.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:
6
7name=libgmp
6c71018b 8version=6.1.1
f8d72a05
VM
9release=1
10source=(ftp://ftp.gmplib.org/pub/gmp-${version%a}/gmp-$version.tar.xz)
11
12build() {
13 cd gmp-${version%a}
14 ./configure --prefix=/usr \
15 --enable-cxx \
16 --build=aarch64-unknown-linux-gnueabi
17 make
18 make DESTDIR=$PKG install
19 rm -r $PKG/usr/share
20}