source: trunk/external/casa_asap/install.sh @ 1159

Last change on this file since 1159 was 1159, checked in by mar637, 18 years ago

added dir for external packages, mainly casa.

  • Property svn:executable set to *
File size: 553 bytes
Line 
1#!/bin/sh
2
3. aipsinit.sh
4
5MODULES="casa components coordinates fits images lattices measures ms scimath tables atnf"
6
7echo 'Building modules. This might take a while.'
8echo 'Progress can be seen with  tail -f build.log'
9if [ -f 'build.log' ]
10then
11    rm build.log
12    touch build.log
13fi
14for mod in ${MODULES}
15do
16    cd $ROOTDIR/code/$mod
17    echo "Making module $mod..."
18    make cleansys >> $ROOTDIR/build.log 2>&1
19    make >> $ROOTDIR/build.log 2>&1
20done
21echo 'Finished building the casa modules required by ASAP'
22echo 'Look for status in build.log'
Note: See TracBrowser for help on using the repository browser.