CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
binutils: update to 2.22. Removed host's texinfo dependency.
[crossrootfs.git] / libgmp / Pkgfile
... / ...
CommitLineData
1# Description: Free library for arbitrary precision arithmetic
2# URL: http://gmplib.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:
6
7name=libgmp
8version=5.0.5
9release=1
10source=(ftp://ftp.gnu.org/gnu/gmp/gmp-$version.tar.xz)
11
12build() {
13 cd gmp-$version
14 ./configure --build=$CHOST \
15 --host=$CTARGET \
16 --prefix=/usr \
17 --enable-cxx
18
19 make
20 make DESTDIR=$PKG install
21 rm -r $PKG/usr/share
22}