blob: c80736368dcb5d545462b17d89f8233eaab0c4ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
description="C library for the arithmetic of complex numbers."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.multiprecision.org/"
depends=(libmpfr)
name=libmpc
version=0.8.2
release=1
source=(http://www.multiprecision.org/${name/lib}/download/${name/lib}-$version.tar.gz)
build ()
{
cd mpc-$version;
./configure --prefix=$prefix --mandir=$mandir;
make;
make DESTDIR=$PKG install;
}
|