2019-09-28 00:17:56 +08:00
|
|
|
# Description: Contains math libraries that useful functions for arbitrary precision arithmetic
|
|
|
|
# URL:
|
2019-11-10 23:58:56 +08:00
|
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
2019-09-28 00:17:56 +08:00
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=gmp
|
2020-06-12 16:42:33 +08:00
|
|
|
version=6.2.0
|
|
|
|
release=1
|
2019-09-28 00:17:56 +08:00
|
|
|
source=(https://ftp.gnu.org/gnu/gmp/$name-$version.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-cxx \
|
|
|
|
--build=x86_64-unknown-linux-gnu \
|
|
|
|
--disable-static
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2020-06-12 16:42:33 +08:00
|
|
|
}
|