summaryrefslogtreecommitdiff
path: root/setup_native
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-26 12:18:49 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-26 12:18:49 +0000
commit9dfa74d4670186e8304e47de350838b4a7c98494 (patch)
tree7eb8b2e742b5162beabc7f2c5e040a275b58234e /setup_native
parentce904f6e25a02286fd5288e2d2a843832b4ecbae (diff)
INTEGRATION: CWS onlineupdate6 (1.1.2); FILE ADDED
2007/10/15 04:50:39 obr 1.1.2.1: #i82283# added unpack and update script
Diffstat (limited to 'setup_native')
-rw-r--r--setup_native/scripts/unpack_update.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/setup_native/scripts/unpack_update.sh b/setup_native/scripts/unpack_update.sh
new file mode 100644
index 000000000..d93bb2749
--- /dev/null
+++ b/setup_native/scripts/unpack_update.sh
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+EXTENSION=`expr "//$1" : '.*\/.*\.\(t.*\)'`
+[ -z $EXTENSION ] && ( echo "Unable to determine file type"; exit 2 )
+
+BASEDIR=`dirname "$1"`
+FOLDER=`basename "$1" ".$EXTENSION"`
+NUM=1
+
+DESTPATH="$BASEDIR/$FOLDER"
+
+while [ -d "$DESTPATH" ]; do
+ NUM=`expr $NUM + 1`
+ DESTPATH="$BASEDIR/$FOLDER-$NUM"
+done
+
+mkdir "$DESTPATH"
+cd "$DESTPATH"
+
+if [ "$EXTENSION" = "tar.gz" -o "$EXTENSION" = "tgz" ]; then
+ if [ -x /usr/bin/gzcat ]; then
+ /usr/bin/gzcat "$1" | tar -xf -
+ else
+ tar -xzf "$1"
+ fi
+elif [ "$EXTENSION" = "tar.bz2" -o "$EXTENSION" = "tbz2" ]; then
+ /usr/bin/bzcat "$1" | tar -xf -
+else
+ echo "Unsupported type of archive"
+ exit 2
+fi
+
+UPDATE=`eval ls */update` && SUBFOLDER=`dirname $UPDATE` && mv $SUBFOLDER/* . && rmdir $SUBFOLDER && echo "$DESTPATH/update"