20 lines
493 B
Text
20 lines
493 B
Text
![]() |
# Description: Contains math libraries that useful functions for arbitrary precision arithmetic
|
||
|
# URL:
|
||
|
# Maintainer:
|
||
|
# Depends on:
|
||
|
|
||
|
name=gmp
|
||
|
version=6.1.2
|
||
|
release=2
|
||
|
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
|
||
|
}
|