123456789101112131415161718192021 |
- cd $tmpdir
-
- # Download sources
- if [ ! -f "$mpfr" ]; then
- echo "Downloading GNU mpfr sources..."
- wget $mpfrmirror/$mpfr
- tar -xf $mpfr
- fi
-
- # Configure and compile
-
- cd $mpfrsrcdir
-
- ./configure --prefix=$freondir --disable-static --enable-thread-safe
-
- make -j$corecount
-
- make install
-
- cd ..
|