2008-10-21 01:43:33 +02:00
|
|
|
# Template build file for 'gmp'
|
|
|
|
pkgname=gmp
|
2009-06-07 05:44:01 +02:00
|
|
|
version=4.3.1
|
2009-05-16 00:05:09 +02:00
|
|
|
distfiles="ftp://ftp.gmplib.org/pub/gmp-$version/gmp-$version.tar.bz2"
|
2008-10-21 01:43:33 +02:00
|
|
|
build_style=gnu_configure
|
2008-11-26 11:48:22 +01:00
|
|
|
configure_args="--enable-cxx --enable-mpbsd"
|
2008-10-21 01:43:33 +02:00
|
|
|
short_desc="Library for arbitrary precision arithmetic"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2009-06-07 05:44:01 +02:00
|
|
|
checksum=aa0295472854f2f9691db7c6892921452521b4d5def15223136f4733309db7c8
|
2008-10-21 01:43:33 +02:00
|
|
|
long_desc="
|
|
|
|
GNU MP is a library for arbitrary precision arithmetic, operating on signed
|
|
|
|
integers, rational numbers, and floating point numbers. It has a rich set
|
|
|
|
of functions, and the functions have a regular interface.
|
|
|
|
|
|
|
|
GNU MP is designed to be as fast as possible, both for small operands and for
|
|
|
|
huge operands. The speed is achieved by using fullwords as the basic
|
|
|
|
arithmetic type, by using fast algorithms, by carefully optimized assembly
|
|
|
|
code for the most common inner loops for a lots of CPUs, and by a general
|
|
|
|
emphasis on speed (instead of simplicity or elegance).
|
|
|
|
|
|
|
|
The speed of GNU MP is believed to be faster than any other similar library.
|
|
|
|
The advantage for GNU MP increases with the operand sizes for certain
|
|
|
|
operations, since GNU MP in many cases has asymptotically faster algorithms."
|
|
|
|
|
2008-10-27 07:42:40 +01:00
|
|
|
base_chroot=yes
|
2009-02-24 07:13:11 +01:00
|
|
|
subpackages="devel"
|
|
|
|
|
2009-04-24 17:24:35 +02:00
|
|
|
Add_dependency build m4
|
2009-02-24 07:13:11 +01:00
|
|
|
Add_dependency run glibc
|
2008-11-21 16:55:58 +01:00
|
|
|
|
|
|
|
pre_configure()
|
|
|
|
{
|
|
|
|
if [ "$xbps_machine" != "x86_64" ]; then
|
|
|
|
local triplet="$xbps_machine-pc-linux-gnu"
|
|
|
|
configure_args="--host=$triplet --build=$triplet"
|
|
|
|
fi
|
|
|
|
}
|