# /!bin/sh
# maketgz Bernhard Hailer 1996
# makes a directory cleanup (xemacs garbage collection) and creates
# a compressed tar archive.

# Uncompress it using "tar zxfv leafsite.tar.gz".

# prevent side effects
rm leafsite.tar.gz

# garbage collection
rm *~
rm \#*
rm scripts/*~
rm scripts/\#*

# get latest scripts
cp /sbin/init.d/rc.isdn scripts
cp /sbin/isdn           scripts
cp /sbin/transmail      scripts
cp /sbin/transnews      scripts

# make package
tar zcv * -f leafsite.tar.gz

# End of maketgz.
