mpfr.build 310 B

123456789101112131415161718192021
  1. cd $tmpdir
  2. # Download sources
  3. if [ ! -f "$mpfr" ]; then
  4. echo "Downloading GNU mpfr sources..."
  5. wget $mpfrmirror/$mpfr
  6. tar -xf $mpfr
  7. fi
  8. # Configure and compile
  9. cd $mpfrsrcdir
  10. ./configure --prefix=$freondir --disable-static --enable-thread-safe
  11. make -j$corecount
  12. make install
  13. cd ..