diff options
author | Nick White <git@njw.me.uk> | 2009-04-15 15:00:42 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2009-04-15 15:00:42 +0100 |
commit | ff32e8c62cbc00c30849dbbaa275bad72fe98e5e (patch) | |
tree | 23360f6b1af6d756b2a608bb99390ec22fa28c40 /totsc | |
parent | a86984984f21b70bcdb835fe9625b7eeda029cb8 (diff) | |
download | gemrb-gameinstallers-ff32e8c62cbc00c30849dbbaa275bad72fe98e5e.tar.bz2 gemrb-gameinstallers-ff32e8c62cbc00c30849dbbaa275bad72fe98e5e.zip |
Removed obsolete totsc autoinstaller
Diffstat (limited to 'totsc')
-rwxr-xr-x | totsc/auto-totsc-installer.sh | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/totsc/auto-totsc-installer.sh b/totsc/auto-totsc-installer.sh deleted file mode 100755 index f82114a..0000000 --- a/totsc/auto-totsc-installer.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh - -source ../includes/generic-includes.sh -source ../cd-includes.sh -source ../patch-includes.sh -source ../autoinstall-includes.sh - -parseargs "$@" - -echo "Checking CD version" -CDMD5=$(md5sum $CDMOUNT/data1.cab|awk '{print $1}') - -case "$CDMD5" in - "e27d259ddc0171ff945dbba136e60309" ) - FULLGAMENAME="Baldurs Gate Tales of the Sword Coast: 1CD UK version" - INSTALLSCRIPT=./install-totsc-1cd-uk.sh - OFFICIALPATCH=./install-totsc-patch-uk.sh - ;; - * ) - echo "Unrecognised CD - please select Baldurs Gate version from menu" - # TODO: Add menu to show and select all known BG1 versions - exit 1 - ;; -esac - -echo "$FULLGAMENAME detected, installing" -$INSTALLSCRIPT -i "$TARGETDIR" -c "$CDMOUNT" 1>/dev/null || diequietly -if query "Do you want to install the official patch?" y; then - $OFFICIALPATCH -i "$TARGETDIR" -p "$PATCHDIR" 1>/dev/null || diequietly -fi -if query "Do you want to install the baldurdash fixes?" y; then - ./install-totsc-patch-baldurdash-fix.sh -i "$TARGETDIR" -p "$PATCHDIR" 1>/dev/null || diequietly - if [ "$LANGUAGE" = "English" ]; then - ./install-totsc-patch-baldurdash-text.sh -i "$TARGETDIR" -p "$PATCHDIR" 1>/dev/null || diequietly - fi -fi -if query "Do you want to remove unneeded windows files?" n; then - rm -f "$TARGETDIR"/*.exe - rm -f "$TARGETDIR"/*.url - rm -f "$TARGETDIR"/luaauto.cfg -fi -echo -echo "$FULLGAMENAME installed successfully" |