2008-10-20 23:43:33 +00:00
|
|
|
# Template build file for 'gmp'
|
|
|
|
pkgname=gmp
|
2013-10-02 06:17:15 +00:00
|
|
|
version=5.1.3
|
2013-02-06 10:27:26 +00:00
|
|
|
revision=1
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2009-11-14 16:51:22 +00:00
|
|
|
# Build with -fexceptions as suggested by ppl.
|
|
|
|
CPPFLAGS="-fexceptions"
|
2013-04-11 07:52:59 +00:00
|
|
|
configure_args="--enable-cxx --build=${XBPS_MACHINE}-unknown-linux-gnu"
|
2013-03-24 09:21:58 +00:00
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
2013-04-11 07:52:59 +00:00
|
|
|
cnfigure_args+=" ABI=32"
|
2010-03-29 12:58:36 +00:00
|
|
|
fi
|
2013-03-24 09:21:58 +00:00
|
|
|
makedepends="zlib-devel"
|
2008-10-20 23:43:33 +00:00
|
|
|
short_desc="Library for arbitrary precision arithmetic"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2012-01-27 13:54:50 +00:00
|
|
|
license="LGPL-3"
|
2013-02-06 10:27:26 +00:00
|
|
|
homepage="http://gmplib.org/"
|
2013-02-17 04:51:02 +00:00
|
|
|
distfiles="ftp://ftp.gmplib.org/pub/gmp-${version}/gmp-${version}.tar.xz"
|
2013-10-02 06:17:15 +00:00
|
|
|
checksum=dee2eda37f4ff541f30019932db0c37f6f77a30ba3609234933b1818f9b07071
|
2010-05-20 22:53:29 +00:00
|
|
|
|
2013-04-08 23:49:27 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2013-10-02 06:17:15 +00:00
|
|
|
hostmakedepends="libtool"
|
2013-02-18 12:01:06 +00:00
|
|
|
pre_configure() {
|
2013-10-02 06:17:15 +00:00
|
|
|
libtoolize -f
|
2013-02-18 12:01:06 +00:00
|
|
|
}
|
|
|
|
fi
|
2013-04-11 07:52:59 +00:00
|
|
|
|
|
|
|
gmp-devel_package() {
|
|
|
|
depends="gmp>=${version}"
|
2013-05-25 06:45:31 +00:00
|
|
|
short_desc+=" - development files"
|
2013-04-11 07:52:59 +00:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove "usr/lib/*.a"
|
2013-10-02 06:17:15 +00:00
|
|
|
vmove "usr/lib/*.so"
|
2013-04-11 07:52:59 +00:00
|
|
|
vmove usr/share
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gmp_package() {
|
|
|
|
pkg_install() {
|
2013-10-02 06:17:15 +00:00
|
|
|
vmove all
|
2013-04-11 07:52:59 +00:00
|
|
|
}
|
|
|
|
}
|