Changeset 329 for SH_SHM/trunk


Ignore:
Timestamp:
02/17/2011 05:22:44 PM (13 years ago)
Author:
marcus
Message:

r168 | walther | 2011-02-17 17:21:44 +0100 (Do, 17 Feb 2011) | 4 lines

  • Added SHM-install.csh installation script (slightly changed).
  • Setup preparation via setup.py
  • Using gzip compression for better os support.
Location:
SH_SHM/trunk/setup
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • SH_SHM/trunk/setup/decompress.sh

    r327 r329  
    1111ARCHIVE=`awk '/^__ARCHIVE_BELOW__/ {print NR + 1; exit 0; }' $0` 
    1212 
    13 tail -n+$ARCHIVE $0 | base64 -d | tar xj -C $TMPDIR 
     13tail -n+$ARCHIVE $0 | base64 -d | tar xz -C $TMPDIR 
    1414 
    1515CDIR=`pwd` 
    1616cd $TMPDIR 
    17 python ./setup.py 
     17python ./setup/setup.py 
    1818 
    1919result=$? 
     
    2626else 
    2727    echo "Installation unsuccessful, keeping temporary directory..." 
    28     echo "Please check manually setup.py in $TMPDIR" 
     28    echo "" 
     29    echo "You can restart installation procedure by cd'ing into" 
     30    echo $TMPDIR "and running ./setup/setup.py [--debug]" 
    2931    exit 1 
    3032fi 
  • SH_SHM/trunk/setup/makerelease.sh

    r327 r329  
    4848    echo "3. Building tar archive..." 
    4949    cd $TMPDIR 
    50     tar cjf SHM.tar.bz2 * 
     50    tar czf SHM.tar.gz * 
    5151    cd $OLDPWD 
    5252} 
Note: See TracChangeset for help on using the changeset viewer.