Commit | Line | Data |
---|---|---|
ecf4a234 VM |
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 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu | |
5 | # Depends on: libmpfr | |
6 | ||
7 | name=libmpc | |
8 | version=0.9 | |
9 | release=1 | |
10 | source=(http://www.multiprecision.org/mpc/download/mpc-$version.tar.gz) | |
11 | ||
12 | build() { | |
13 | cd mpc-$version | |
14 | ./configure --build=$CHOST \ | |
15 | --host=$CTARGET \ | |
16 | --prefix=/usr \ | |
17 | EGREP=egrep | |
18 | make | |
19 | make DESTDIR=$PKG install | |
20 | rm -r $PKG/usr/share | |
21 | } |