2006-01-04 14:02:56 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# makedist.sh
|
|
|
|
#
|
|
|
|
# Make a Scyther distribution of the most recent revision.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# A distribution is a directory
|
|
|
|
#
|
|
|
|
# scyther/
|
|
|
|
# - readme.txt file with some indications from this
|
|
|
|
# directory.
|
|
|
|
# demo/
|
|
|
|
# - demo files
|
|
|
|
# SPORE/
|
|
|
|
# - spore files
|
|
|
|
# scyther/
|
|
|
|
# - scyther executable
|
|
|
|
#
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Parameters
|
|
|
|
|
|
|
|
ARCHIVE=scyther.tgz
|
|
|
|
|
|
|
|
# Creates a temporary subdirectory here.
|
|
|
|
TMPDIR=/tmp/scytherdist
|
|
|
|
WORKNAME=scyther
|
|
|
|
|
|
|
|
# Repository
|
|
|
|
SVNROOT=https://svn.win.tue.nl/repos/ecss/trunk/protocols/spdl
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Derived things
|
|
|
|
|
|
|
|
WORKDIR=$TMPDIR/$WORKNAME
|
|
|
|
CURDIR=$PWD
|
|
|
|
DEST=$PWD/$ARCHIVE
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Init
|
|
|
|
|
|
|
|
# Remove old remnants and create a new directory
|
|
|
|
rm -f $DEST
|
|
|
|
rm -rf $TMPDIR
|
|
|
|
mkdir $TMPDIR
|
|
|
|
|
|
|
|
# Create scyther/
|
|
|
|
mkdir $WORKDIR
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Collect required data and set up
|
|
|
|
|
|
|
|
|
|
|
|
# Fill
|
|
|
|
svn export $SVNROOT/SPORE $WORKDIR/SPORE
|
|
|
|
svn export $SVNROOT/demo $WORKDIR/demo
|
2006-01-04 14:13:48 +00:00
|
|
|
svn export $SVNROOT/scyther $WORKDIR/bin
|
2006-01-04 14:02:56 +00:00
|
|
|
|
|
|
|
# Readme
|
|
|
|
cp readme.txt $WORKDIR
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Collected all needed data, finish up
|
|
|
|
|
|
|
|
# Compress
|
|
|
|
cd $TMPDIR
|
|
|
|
tar zcvf $DEST $WORKNAME
|
|
|
|
|
|
|
|
# Remove garbage
|
|
|
|
rm -rf $TMPDIR
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Done.
|