core/libgmp/Pkgfile

22 lines
563 B
Plaintext
Raw Normal View History

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