core/libmpc/PKGBUILD

39 lines
863 B
Bash
Raw Normal View History

#
# Chakra Packages for Chakra, part of chakra-project.org
#
2012-04-21 08:01:42 +08:00
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
2010-03-13 23:25:19 +08:00
pkgname=libmpc
2014-05-22 22:43:05 +08:00
pkgver=1.0.2
pkgrel=1
# dash the next line if you want to skip the tests
_test=1
2010-03-13 23:25:19 +08:00
pkgdesc="Library for the arithmetic of complex numbers with arbitrarily high precision"
2012-11-14 04:48:42 +08:00
arch=('x86_64')
2010-03-13 23:25:19 +08:00
url="http://www.multiprecision.org"
license=('LGPL')
2013-04-25 06:22:36 +08:00
depends=('mpfr>=3.1.2')
options=('!libtool')
2010-03-13 23:25:19 +08:00
install=libmpc.install
2012-11-10 18:49:52 +08:00
source=(http://www.multiprecision.org/mpc/download/mpc-${pkgver/_/-}.tar.gz{,.sig})
2014-05-22 22:43:05 +08:00
md5sums=('68fadff3358fb3e7976c7a398a0af4c3'
2013-09-26 06:57:40 +08:00
'SKIP')
2010-03-13 23:25:19 +08:00
build() {
cd "${srcdir}/mpc-${pkgver}"
./configure --prefix=/usr
make
2013-09-26 06:57:40 +08:00
}
2013-09-26 06:57:40 +08:00
check() {
cd "${srcdir}/mpc-${pkgver}"
make check
}
2013-09-26 06:57:40 +08:00
package() {
cd "${srcdir}/mpc-${pkgver}"
make DESTDIR="${pkgdir}" install
mv ${pkgdir}/usr/share/info/{mpc,libmpc}.info
2010-03-13 23:25:19 +08:00
}