void-packages/srcpkgs/gmp/template

42 lines
955 B
Text
Raw Normal View History

# Template build file for 'gmp'
pkgname=gmp
2013-05-25 06:45:31 +00:00
version=5.1.2
2013-02-06 10:27:26 +00:00
revision=1
build_style=gnu-configure
# Build with -fexceptions as suggested by ppl.
CPPFLAGS="-fexceptions"
configure_args="--enable-cxx --build=${XBPS_MACHINE}-unknown-linux-gnu"
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
cnfigure_args+=" ABI=32"
fi
makedepends="zlib-devel"
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-05-25 06:45:31 +00:00
checksum=c7d943a6eceb4f0d3d3ab1176aec37853831cdfa281e012f8a344ba3ceefcbc2
if [ "$CROSS_BUILD" ]; then
2013-05-25 06:49:28 +00:00
hostmakedepends="automake libtool"
pre_configure() {
autoreconf -fi
}
fi
gmp-devel_package() {
depends="gmp>=${version}"
2013-05-25 06:45:31 +00:00
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove usr/share
}
}
gmp_package() {
pkg_install() {
vmove usr
}
}