summaryrefslogtreecommitdiffstats
path: root/libgmp/Pkgfile
blob: 5bd3817765b48116f342b80b0f368b28dfcbe997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
description="Free library for arbitrary precision arithmetic"
packager=""
maintainer="CRUX System Team, core-ports at crux dot nu"
url="http://gmplib.org/"
depends=()

name=libgmp
version=5.0.1
release=1
source=(ftp://ftp.gnu.org/gnu/gmp/gmp-5.0.1.tar.bz2)
build () 
{ 
    cd gmp-$version;
    ABI=32 ./configure --prefix=/usr --enable-cxx --build=i686-pc-linux-gnu;
    make;
    make DESTDIR=$PKG install;
    rm -r $PKG/usr/share
}