arb/.build_dependencies

27 lines
656 B
Text
Raw Normal View History

2016-04-01 10:29:09 +05:30
#! /bin/sh
wget http://mpir.org/mpir-2.7.0.tar.bz2
tar -xf mpir-2.7.0.tar.bz2
cd mpir-2.7.0
./configure --enable-gmpcompat --prefix=$HOME/deps --disable-static
2016-04-01 10:29:09 +05:30
make -j4 > /dev/null 2>&1
make install
cd ..
2016-10-08 23:56:07 +02:00
wget http://www.mpfr.org/mpfr-3.1.5/mpfr-3.1.5.tar.bz2
tar -xf mpfr-3.1.5.tar.bz2
cd mpfr-3.1.5
./configure --with-gmp=$HOME/deps --prefix=$HOME/deps --disable-static
2016-04-01 10:29:09 +05:30
make -j4 > /dev/null 2>&1
make install
cd ..
wget https://github.com/wbhart/flint2/archive/trunk.tar.gz
2016-04-01 10:29:09 +05:30
tar -xf trunk.tar.gz
cd flint2-trunk
./configure --with-gmp=$HOME/deps --with-mpfr=$HOME/deps --prefix=$HOME/deps --disable-static
2016-04-01 10:29:09 +05:30
make -j4 > /dev/null 2>&1
make install
cd ..