blob: 748c32bb802bba1fe3034ed21449dbda18d56b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Librairie pour la precisision mathématique multiple
# URL: http://www.mpfr.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gmp
name=mpfr
version=2.4.1
release=1
source=(http://www.mpfr.org/mpfr-current/mpfr-$version.tar.gz \
)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-thread-safe
make
make DESTDIR=$PKG install
# Remove the dir file
rm $PKG/usr/share/info/dir
}
|