diff options
Diffstat (limited to 'pst')
-rwxr-xr-x | pst/install-patch-official.sh | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/pst/install-patch-official.sh b/pst/install-patch-official.sh index 05cd670..b053e37 100755 --- a/pst/install-patch-official.sh +++ b/pst/install-patch-official.sh @@ -14,7 +14,14 @@ # See <http://www.gnu.org/licenses/> for a copy of the GNU General # Public License. # -# Planescape: Torment official patch +# Planescape: Torment official patch v1.1 +# +# info : http://www.planetbaldursgate.com/pst/media/files/patches/tormentreadme11.txt +# size : 3.4 MB +# date : 1/28/00 + +patch_url="http://www.sorcerers.net/Games2/Torment/Trmt11.exe" +patch_name="$(basename $patch_url)" scriptdir="$(dirname $0)"/.. source "${scriptdir}/includes/generic-includes.sh" @@ -26,9 +33,9 @@ checkforbin cabextract unshield wget setuptmp -getpatch http://www.sorcerers.net/Games2/Torment/Trmt11.exe +getpatch $patch_url -cabextract -L "${TMPDIR}/Trmt11.exe" -d "$TMPDIR" || diesoftly +cabextract -L "${TMPDIR}/${patch_name}" -d "$TMPDIR" || diesoftly unshield -L x "${TMPDIR}/data1.cab" -d "$TMPDIR" || diesoftly cp -R "${TMPDIR}/program_executable_files/"* "$TARGETDIR" || diesoftly |