eth0s/ports/core/gmp/Pkgfile

21 lines
542 B
Text
Raw Normal View History

# 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
# Depends on:
name=gmp
2021-04-18 08:19:42 +08:00
version=6.2.1
2020-06-12 16:42:33 +08:00
release=1
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
}