diff options
author | root <root@rshg047.dnsready.net> | 2011-06-26 23:06:14 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-26 23:06:14 +0000 |
commit | 715631caf52784c47c8ed3aeb6cbdba2715a08db (patch) | |
tree | d1923d66cba8dcf90112f81ca31009202cff25a3 /testing/mpfr/PKGBUILD | |
parent | 8999fa1750304fb2367fb7743e49e013405e88be (diff) |
Sun Jun 26 23:06:14 UTC 2011
Diffstat (limited to 'testing/mpfr/PKGBUILD')
-rw-r--r-- | testing/mpfr/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/mpfr/PKGBUILD b/testing/mpfr/PKGBUILD new file mode 100644 index 000000000..3f593116a --- /dev/null +++ b/testing/mpfr/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 128942 2011-06-25 14:51:58Z allan $ +# Maintainer: Allan McRae <allan@archlinux.org> +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: damir <damir@archlinux.org> + +pkgname=mpfr +_pkgver=3.0.1 +_patchlevel=p4 +pkgver=${_pkgver}.${_patchlevel} +pkgrel=1 +pkgdesc="Multiple-precision floating-point library" +arch=('i686' 'x86_64') +url="http://www.mpfr.org/" +license=('LGPL') +depends=('gmp>=5.0') +options=('!libtool') +install=mpfr.install +source=(http://www.mpfr.org/mpfr-current/mpfr-${_pkgver}.tar.xz + mpfr-${_pkgver}.${_patchlevel}.patch) +md5sums=('645882d9d179113a70af84d27086ed9f' + '52c2ac5ffbbbf0c68f08e89f016ba7aa') + +build() { + cd "${srcdir}/${pkgname}-${_pkgver}" + patch -Np1 -i $srcdir/mpfr-${_pkgver}.${_patchlevel}.patch + ./configure --prefix=/usr --enable-thread-safe --enable-shared + make +} + +check() { + cd "${srcdir}/${pkgname}-${_pkgver}" + make check +} + +package() { + cd "${srcdir}/${pkgname}-${_pkgver}" + make DESTDIR="${pkgdir}" install +} |