├── .gitattributes ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── TGZ ├── CGAL-3.3.1.tar.gz ├── boost_1_64_0.tar.gz ├── gsl-1.8.tar.gz ├── hdf5-1.8.8.tar.gz ├── netcdf-3.6.1.tar.gz ├── netpbm-10.35.94.tgz ├── pcre++-0.9.5.tar.gz └── pcre-7.8.tar.gz ├── Test └── mni_icbm_00100_t1.mnc ├── install.sh ├── mk_environment.pl └── provision └── netpbm └── Makefile.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/.gitattributes -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/README.md -------------------------------------------------------------------------------- /TGZ/CGAL-3.3.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/TGZ/CGAL-3.3.1.tar.gz -------------------------------------------------------------------------------- /TGZ/boost_1_64_0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/TGZ/boost_1_64_0.tar.gz -------------------------------------------------------------------------------- /TGZ/gsl-1.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/TGZ/gsl-1.8.tar.gz -------------------------------------------------------------------------------- /TGZ/hdf5-1.8.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/TGZ/hdf5-1.8.8.tar.gz -------------------------------------------------------------------------------- /TGZ/netcdf-3.6.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/TGZ/netcdf-3.6.1.tar.gz -------------------------------------------------------------------------------- /TGZ/netpbm-10.35.94.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/TGZ/netpbm-10.35.94.tgz -------------------------------------------------------------------------------- /TGZ/pcre++-0.9.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/TGZ/pcre++-0.9.5.tar.gz -------------------------------------------------------------------------------- /TGZ/pcre-7.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/TGZ/pcre-7.8.tar.gz -------------------------------------------------------------------------------- /Test/mni_icbm_00100_t1.mnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/Test/mni_icbm_00100_t1.mnc -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/install.sh -------------------------------------------------------------------------------- /mk_environment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/mk_environment.pl -------------------------------------------------------------------------------- /provision/netpbm/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aces/CIVET_Full_Project/HEAD/provision/netpbm/Makefile.config --------------------------------------------------------------------------------