core/libgmp/Pkgfile

19 lines
471 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
2012-05-09 08:53:14 +02:00
version=5.0.5
2009-05-11 15:43:02 +02:00
release=1
2012-01-28 09:57:42 +01:00
source=(ftp://ftp.gnu.org/gnu/gmp/gmp-$version.tar.xz)
2008-09-17 10:28:40 +02:00
build() {
cd gmp-$version
ABI=32 ./configure --prefix=/usr \
--enable-cxx \
--build=i686-pc-linux-gnu
2008-09-17 10:28:40 +02:00
make
make DESTDIR=$PKG install
2010-01-09 15:44:19 +01:00
rm -r $PKG/usr/share
2008-09-17 10:28:40 +02:00
}