summaryrefslogtreecommitdiffstats
path: root/gmp/Pkgfile
blob: 07ebb501787f8525f597e8daeb07e2249f837a09 (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
33
34
35
# 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.5
release=1
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)

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
}