milis/talimatname/temel/mpfr/talimat

27 lines
627 B
Plaintext
Raw Normal View History

2017-10-27 21:56:50 +02:00
# Tanım: The MPFR package contains functions for multiple precision math
2016-02-24 01:27:23 +01:00
# URL: http://www.mpfr.org/
2017-10-27 21:56:50 +02:00
# Paketçi: milisarge
# Gerekler:
2017-10-28 14:15:02 +02:00
isim=mpfr
surum=3.1.3
devir=2
2016-02-24 01:27:23 +01:00
2017-10-28 14:15:02 +02:00
kaynak=(http://www.mpfr.org/mpfr-current/mpfr-$surum.tar.xz
http://www.linuxfromscratch.org/patches/downloads/$isim/$isim-$surum-upstream_fixes-1.patch)
2016-02-24 01:27:23 +01:00
2017-10-27 23:59:41 +02:00
derle()
2016-02-24 01:27:23 +01:00
{
2017-10-28 14:15:02 +02:00
cd mpfr-$surum
patch -Np1 -i ../$isim-$surum-upstream_fixes-1.patch
2016-02-24 01:27:23 +01:00
./configure --prefix=/usr --enable-thread-safe \
--libdir=/lib \
2017-10-28 14:15:02 +02:00
--docdir=/usr/share/doc/mpfr-$surum
2016-02-24 01:27:23 +01:00
make
make check
make DESTDIR=$PKG install
2016-03-07 13:45:49 +01:00
#make html
#make DESTDIR=$PKG install-html
#rm -rf $PKG/usr/share/info/dir
2016-02-24 01:27:23 +01:00
}