https://github.com/paboyle/Grid
Raw File
Tip revision: a5645a7efe92b4abdc557e8d0accefddf8cdbb13 authored by Azusa Yamaguchi on 30 May 2018, 08:48:52 UTC
for dwf_precondition
Tip revision: a5645a7
bootstrap.sh
#!/usr/bin/env bash

EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.3.3.tar.bz2'

echo "-- deploying Eigen source..."
wget ${EIGEN_URL} --no-check-certificate && ./scripts/update_eigen.sh `basename ${EIGEN_URL}` && rm `basename ${EIGEN_URL}`

echo '-- generating Make.inc files...'
./scripts/filelist
echo '-- generating configure script...'
autoreconf -fvi
back to top