core/libgmp/Pkgfile

25 lines
501 B
Plaintext
Raw Normal View History

2008-09-17 10:28:40 +02:00
# Description: Free library for arbitrary precision arithmetic
2021-12-13 12:14:48 +01:00
# URL: https://gmplib.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2008-09-17 10:28:40 +02:00
name=libgmp
2020-11-19 15:15:56 +01:00
version=6.2.1
2013-10-04 10:46:53 +02:00
release=1
2021-12-13 12:14:48 +01:00
source=(https://gmplib.org/download/gmp/gmp-$version.tar.xz
gmp.h)
2008-09-17 10:28:40 +02:00
build() {
2021-12-13 12:14:48 +01:00
cd gmp-$version
./configure --prefix=/usr \
--enable-cxx \
--build=x86_64-unknown-linux-gnu
make
make DESTDIR=$PKG install
mv $PKG/usr/include/gmp{,-64}.h
install -m 0644 $SRC/gmp.h $PKG/usr/include/
rm -r $PKG/usr/share
2008-09-17 10:28:40 +02:00
}