blob: 0025f7c14e32f59e7c771b1e0fddaf2eb9dc94a0 (
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
# URL: http://www.multiprecision.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: libmpfr
name=libmpc
version=0.8.2
release=1
source=(http://www.multiprecision.org/mpc/download/mpc-$version.tar.gz)
build() {
cd mpc-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}
|