Changes between Version 31 and Version 32 of ASAPFedoraInstall
- Timestamp:
- 03/17/09 15:52:01 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ASAPFedoraInstall
v31 v32 47 47 As root 48 48 {{{ 49 yum install gcc-gfortran gcc-c++ flex bison boost-devel python-devel atlas-devel cfitsio-devel python-matplotlib-tk ipython wget make49 yum -y install gcc-gfortran gcc-c++ flex bison boost-devel python-devel atlas-devel cfitsio-devel python-matplotlib-tk ipython wget make 50 50 }}} 51 51 … … 56 56 su 57 57 rpm -i scons-1.2.0-1.noarch.rpm 58 exit 58 59 }}} 59 60 … … 66 67 # edit GNUMakefile to use gfortran 67 68 perl -pi.bak -e 's/^FC.*$//; s/^FFLAGS.*$//; s/# (FC.*)$/\1/;s/# (FFLAGS.*)$/\1/;s/(LDFLAGS\s+:=).*$/\1 -lgfortran/' GNUmakefile 68 sudo make install 69 su 70 make install 71 exit 72 cd - 69 73 }}} 70 74 … … 76 80 ./configure 77 81 make 78 sudo make install 82 su 83 make install 79 84 # want to link statically, so remove shred library 80 sudo rm /usr/local/lib/libwcs.so* 85 rm -f /usr/local/lib/libwcs.so* 86 exit 87 cd - 81 88 }}} 89 82 90 83 91 === Install casacore === … … 88 96 cd casacore-0.4.1 89 97 ./batchbuild.py blaslibdir=/usr/lib/atlas cfitsioincdir=/usr/include/cfitsio 90 sudo ./batchbuild.py install prefix=/usr/local 98 su 99 ./batchbuild.py install prefix=/usr/local 100 exit 101 cd - 91 102 }}} 92 103 … … 98 109 cd asap2.3.0 99 110 scons lapacklibdir==/usr/lib/atlas cfitsioincdir=/usr/include/cfitsio 100 sudo scons lapacklibdir==/usr/lib/atlas cfitsioincdir=/usr/include/cfitsio install 111 su 112 scons lapacklibdir==/usr/lib/atlas cfitsioincdir=/usr/include/cfitsio install 113 exit 101 114 }}} 102 115