From 173f2a0f5022112bcb421937c2906ecfc2213525 Mon Sep 17 00:00:00 2001 From: ghaushe Date: Thu, 20 Feb 2003 22:01:44 +0000 Subject: [PATCH] Updated pointer to ZipDLL in the README. install README.txt and add suibtable symlinks git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@793 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/build/win32_install/README | 4 ++-- sc2/build/win32_install/uqm.nsi | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sc2/build/win32_install/README b/sc2/build/win32_install/README index 9b7bee456..0a2709ce3 100644 --- a/sc2/build/win32_install/README +++ b/sc2/build/win32_install/README @@ -7,10 +7,10 @@ will probably work better anyway) The following additional tools are required: NSIS 2.0b1 or newer: nsis.sourceforge.net -NSIS 'ZipDLL' http://nsis.sourceforge.net/archive/download.php?file=ZipDLL.zip -NSIS 'unTGZ' http://nsis.sourceforge.net/archive/viewpage.php?pageid=84 +NSIS 'ZipDLL' http://nsis.sourceforge.net/archive/nsisweb.php?page=33 Optionally: +NSIS 'unTGZ' http://nsis.sourceforge.net/archive/viewpage.php?pageid=84 upx 1.90 or newer: http://upx.sourceforge.net/#unstable resource hacker: http://www.users.on.net/johnson/resourcehacker/ diff --git a/sc2/build/win32_install/uqm.nsi b/sc2/build/win32_install/uqm.nsi index b286f4edd..11fcb3998 100644 --- a/sc2/build/win32_install/uqm.nsi +++ b/sc2/build/win32_install/uqm.nsi @@ -183,6 +183,7 @@ SectionIn 1 2 RO File "..\..\doc\users\manual.txt" File /oname=COPYING.txt "..\..\COPYING" File /oname=AUTHORS.txt "..\..\AUTHORS" + File /oname=README.txt "..\..\README" ; Write the installation path into the registry WriteRegStr HKCU "Software\${MUI_PRODUCT}" "Install_Dir" "$INSTDIR" WriteRegStr HKLM "Software\${MUI_PRODUCT}" "Install_Dir" "$INSTDIR" @@ -452,6 +453,7 @@ SectionIn 1 2 CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\WhatsNew.lnk" "$INSTDIR\WhatsNew.txt" CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\COPYING.lnk" "$INSTDIR\COPYING.txt" CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\AUTHORS.lnk" "$INSTDIR\AUTHORS.txt" + CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\README.lnk" "$INSTDIR\README.txt" SectionEnd @@ -641,6 +643,7 @@ Section "Uninstall" Delete "$INSTDIR\manual.txt" Delete "$INSTDIR\COPYING.txt" Delete "$INSTDIR\AUTHORS.txt" + Delete "$INSTDIR\README.txt" Delete "$INSTDIR\SDL.dll" Delete "$INSTDIR\zlib.dll" Delete "$INSTDIR\libpng1.dll"