summaryrefslogtreecommitdiff
path: root/misc/pascal/zipme
diff options
context:
space:
mode:
Diffstat (limited to 'misc/pascal/zipme')
-rwxr-xr-xmisc/pascal/zipme71
1 files changed, 71 insertions, 0 deletions
diff --git a/misc/pascal/zipme b/misc/pascal/zipme
new file mode 100755
index 000000000..1d9d87194
--- /dev/null
+++ b/misc/pascal/zipme
@@ -0,0 +1,71 @@
+#!/bin/sh
+
+#set -x
+
+DATECODE=$1
+
+TAR="tar cvf"
+ZIP=bzip2
+
+# Move up one directory
+
+cd ..
+HOME=`pwd`
+DIR=${HOME}/pascal
+SUBDIR=pascal
+
+# Make sure we know what is going on
+
+if [ -z ${DATECODE} ] ; then
+ echo "You must supply a date code like MMDDYY as a parameter"
+ exit 1;
+fi
+
+if [ ! -d ${SUBDIR} ] ; then
+ echo "Directory ${SUBDIR} does not exist."
+ exit 1;
+fi
+
+if [ ! -x ${SUBDIR}/$0 ] ; then
+ echo "You must cd to the directory containing this script."
+ exit 1;
+fi
+
+# Define the ZIP file pathes
+
+TAR_NAME=${SUBDIR}-${DATECODE}.tar
+ZIP_NAME=${TAR_NAME}.bz2
+
+# Prepare the directory
+
+make -C ${SUBDIR} deep-clean
+
+find ${SUBDIR} -name \*~ -exec rm -f {} \; || \
+ { echo "Removal of emacs garbage failed!" ; exit 1 ; }
+
+find ${SUBDIR} -name \#\* -exec rm -f {} \; || \
+ { echo "Removal of emacs garbage failed!" ; exit 1 ; }
+
+find ${SUBDIR} -name .\*swp\* -exec rm -f {} \; || \
+ { echo "Removal of vi garbage failed!" ; exit 1 ; }
+
+# Remove any previous tarballs
+
+if [ -f ${TAR_NAME} ] ; then
+ echo "Removing ${HOME}/${TAR_NAME}"
+ rm -f ${TAR_NAME} || \
+ { echo "rm ${TAR_NAME} failed!" ; exit 1 ; }
+fi
+
+if [ -f ${ZIP_NAME} ] ; then
+ echo "Removing ${HOME}/${ZIP_NAME}"
+ rm -f ${ZIP_NAME} || \
+ { echo "rm ${ZIP_NAME} failed!" ; exit 1 ; }
+fi
+
+# Then zip it
+
+${TAR} ${TAR_NAME} ${SUBDIR} || \
+ { echo "tar of ${DIR} failed!" ; exit 1 ; }
+${ZIP} ${TAR_NAME} || \
+ { echo "zip of ${TAR_NAME} failed!" ; exit 1 ; }