21 lines
486 B
Plaintext
Raw Permalink Normal View History

2016-06-02 09:38:51 +02:00
# Description: Free library for arbitrary precision arithmetic
# URL: http://gmplib.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
# Depends on:
name=libgmp
2020-12-02 22:30:13 +01:00
version=6.2.1
2016-06-02 09:38:51 +02:00
release=1
source=(ftp://ftp.gmplib.org/pub/gmp-${version%a}/gmp-$version.tar.xz)
build() {
cd gmp-${version%a}
./configure --prefix=/usr \
2018-06-21 10:40:57 +02:00
--enable-cxx
2016-06-02 09:38:51 +02:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}