summaryrefslogtreecommitdiffstats
path: root/gmp/Pkgfile
blob: 514a471644104b1843526aadbcd7af7177b40d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Description: Contient des librairies mathématiques
# URL: ftp://ftp.gnu.org/gnu/gmp/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch

name=gmp
version=5.0.2
release=1
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
build()
{
cd $name-$version
case `uname -m` in
 i?86)
	ABI=32 ./configure --prefix=/usr \
        --enable-cxx \
	--enable-mpbsd \
	--build=i686-pc-linux-gnu \
        --mandir=/usr/share/man \
        --infodir=/usr/share/info;;
 *)
	./configure --prefix=/usr \
        --enable-cxx \
        --enable-mpbsd \
        --mandir=/usr/share/man \
        --infodir=/usr/share/info;;
esac

make
make DESTDIR=$PKG install
rm $PKG/usr/share/info/dir
}