#!/bin/csh
### --- The University of Birmingham 1996. --------------------------------
### $poplocal/local/ftp/bin/mkneuraltar
# Aaron Sloman 7 Mar 2000
# Made to build neural.tar.gz

# assume this is invoked in the ftp directory

cd $poplocal/local/ftp

pwd

echo "removing neural.tar.gz"

ls -l neural.tar.gz

rm neural.tar.gz

echo "rebuilding neural.tar file"

rm neural/AATAR*
touch "neural/AATARBUILD`date`"

cp -p copyright.html neural/COPYRIGHT.html

ls -lt neural/*/* | head -10 > neural/AATARFILE.LATEST

tar cf - neural | gzip > neural.tar.gz

ls -l neural.tar.gz neural

echo "done"
