1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +01:00
Grid/bootstrap.sh

17 lines
424 B
Bash
Raw Normal View History

2017-05-25 14:27:49 +01:00
#!/usr/bin/env bash
EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.3.4.tar.bz2'
echo "-- deploying Eigen source..."
2018-03-19 11:08:10 +00:00
cd lib
rm -rf Eigen
2018-03-19 11:08:10 +00:00
git clone https://github.com/eigenteam/eigen-git-mirror.git
echo 'eigen_files =\' > Eigen.inc
find Eigen -type f -print | sed 's/^/ /;$q;s/$/ \\/' >> Eigen.inc
2018-03-19 11:08:10 +00:00
cd ..
2016-08-06 00:28:28 +01:00
echo '-- generating Make.inc files...'
./scripts/filelist
echo '-- generating configure script...'
2016-08-01 09:51:06 +01:00
autoreconf -fvi