CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
udev:added forgotten patch
[crossrootfs.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=1.0.1
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 make
18 make DESTDIR=$PKG install
19 rm -r $PKG/usr/share
20 }