blob: a78ed046d2c0713467d153728356187d9d0853c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
description="C library for the arithmetic of complex numbers"
packager=""
maintainer="CRUX System Team, core-ports at crux dot nu"
url="http://www.multiprecision.org/"
depends=(libmpfr)
name=libmpc
version=0.8.2
release=1
source=(http://www.multiprecision.org/mpc/download/mpc-0.8.2.tar.gz)
build ()
{
cd mpc-$version;
./configure --prefix=/usr;
make;
make DESTDIR=$PKG install;
rm -r $PKG/usr/share
}
|