summaryrefslogtreecommitdiff
path: root/setup_native/scripts
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
commita018c74d03838460f88564756231cd3f4610f327 (patch)
treef5d414a39fc5acdb103a4f2e426f55ac8647d33f /setup_native/scripts
parentc7a4dc455dfe412d5713ccd7bff62eb9d2547602 (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/scripts')
-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 000000000000..d93bb2749c07
--- /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"