talimat 627 B

123456789101112131415161718192021222324252627
  1. # Tanım: The MPFR package contains functions for multiple precision math
  2. # URL: http://www.mpfr.org/
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. isim=mpfr
  6. surum=3.1.3
  7. devir=2
  8. kaynak=(http://www.mpfr.org/mpfr-current/mpfr-$surum.tar.xz
  9. http://www.linuxfromscratch.org/patches/downloads/$isim/$isim-$surum-upstream_fixes-1.patch)
  10. derle()
  11. {
  12. cd mpfr-$surum
  13. patch -Np1 -i ../$isim-$surum-upstream_fixes-1.patch
  14. ./configure --prefix=/usr --enable-thread-safe \
  15. --libdir=/lib \
  16. --docdir=/usr/share/doc/mpfr-$surum
  17. make
  18. make check
  19. make DESTDIR=$PKG install
  20. #make html
  21. #make DESTDIR=$PKG install-html
  22. #rm -rf $PKG/usr/share/info/dir
  23. }