#!/bin/csh
### --- The University of Birmingham 1999. ----------------------------
### $poplocal/local/ftp/bin/mkmantar
# Aaron Sloman -- 1 Sep 1999

# Ensure this is invoked in the ftp directory

cd $poplocal/local/ftp

pwd

ls -l man.tar.gz

echo "removing man.tar.gz"

rm man.tar.gz

echo "rebuilding man.tar file"

rm man/AATAR*
touch "man/AATARBUILD-`date +%F`"

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

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

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

ls -l man.tar.gz

echo "done"
