CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libmpc: Initial import, added MACHTYPE to configure options
[ports/core-arm.git] / libmpc / Pkgfile
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 --prefix=/usr --build=$MACHTYPE EGREP=egrep
15 make
16 make DESTDIR=$PKG install
17 rm -r $PKG/usr/share
18 }