blob: 35a7624b9f3182cc30e532c966fe61c69db5d17c (
plain)
1 # Description: C library for the arithmetic of complex numbers
2 # URL: http://www.multiprecision.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: libmpfr
5
6 name=libmpc
7 version=0.9
8 release=1
9 source=(http://www.multiprecision.org/mpc/download/mpc-$version.tar.gz)
10
11 build() {
12 cd mpc-$version
13 ./configure --prefix=/usr EGREP=egrep
14 make
15 make DESTDIR=$PKG install
16 rm -r $PKG/usr/share
17 }
|