blob: f82114ab399f3ec957a7e2999ba3dc291ffafab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/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"
|