blob: ede249df0e4ae32862535d0ff27ed537a0a42b3b (
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
# Depends on: binutils
name=gmp
version=4.3.1
release=2
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 \
--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
}
|