#!/bin/csh
### --- The University of Birmingham 2001. ----------------------------
### $poplocal/local/ftp/bin/mkc_dectar
# Aaron Sloman -- 11 Jun 2001

# Ensure this is invoked in the ftp directory

cd $poplocal/local/ftp

pwd

ls -l newc_dec.tar.gz

echo "removing newc_dec.tar.gz"

rm newc_dec.tar.gz

echo "rebuilding newc_dec.tar file"

rm newc_dec/AATAR*

# Now work in newc_dec directory

cd newc_dec
touch "AATARBUILDnewc_dec`date`"

ls -lLt */* | head -10 > AATARFILEnewc_dec.LATEST

# cp -p new/install.txt INSTALL.TXT

# NB must follow links for this to work, hence -h
tar cfh - * | gzip > ../newc_dec.tar.gz

cd ..

ls -l newc_dec.tar.gz

echo "done"
