CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
grep: updated to 3.1
[crossrootfs.git] / libmpc / Pkgfile
CommitLineData
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
7name=libmpc
6bfced99 8version=1.1.0
ecf4a234 9release=1
6bfced99 10source=(https://ftp.gnu.org/gnu/mpc/mpc-$version.tar.gz)
ecf4a234
VM
11
12build() {
13 cd mpc-$version
14 ./configure --build=$CHOST \
15 --host=$CTARGET \
0d5d69e7
VM
16 --prefix=/usr \
17 --with-sysroot=$CLFS
18
ecf4a234
VM
19 make
20 make DESTDIR=$PKG install
21 rm -r $PKG/usr/share
22}