win32: Update installer for new Perl

This commit is contained in:
TingPing 2014-02-06 16:47:34 -05:00
parent b1b6255f38
commit 8d77fd6a57
1 changed files with 4 additions and 4 deletions

View File

@ -101,7 +101,7 @@ Filename: "{app}\hexchat.exe"; Description: "Run HexChat after closing the Wizar
Filename: "http://docs.hexchat.org/en/latest/changelog.html"; Description: "See what's changed"; Flags: shellexec runasoriginaluser postinstall skipifsilent unchecked
Filename: "{tmp}\vcredist.exe"; Parameters: "/install /quiet /norestart"; StatusMsg: "Installing Visual C++ Redist"; Flags: skipifdoesntexist; Tasks: not portable
Filename: "{tmp}\dotnet4.exe"; Parameters: "/q /norestart"; StatusMsg: "Installing .NET"; Components: xtm; Flags: skipifdoesntexist; Tasks: not portable
Filename: "{tmp}\perl.msi"; StatusMsg: "Installing Perl"; Components: langs\perl; Flags: shellexec skipifdoesntexist; Tasks: not portable
Filename: "{tmp}\perl.exe"; StatusMsg: "Installing Perl"; Components: langs\perl; Flags: shellexec skipifdoesntexist; Tasks: not portable
Filename: "{tmp}\python.msi"; StatusMsg: "Installing Python"; Components: langs\python; Flags: shellexec skipifdoesntexist; Tasks: not portable
Filename: "{tmp}\spelling-dicts.exe"; Parameters: "/verysilent"; StatusMsg: "Installing Spelling Dictionaries"; Components: spell; Flags: skipifdoesntexist; Tasks: not portable
@ -252,12 +252,12 @@ begin
#if APPARCH == "x64"
REDIST := 'http://dl.hexchat.net/misc/vcredist_2013_x64.exe';
PERL := 'http://dl.hexchat.net/misc/perl/Perl%205.18.0%20x64.msi';
PERL := 'http://dl.hexchat.net/misc/perl/Perl-5.18.2-x64.exe';
PY2 := 'http://python.org/ftp/python/2.7.5/python-2.7.5.amd64.msi';
PY3 := 'http://python.org/ftp/python/3.3.2/python-3.3.2.amd64.msi';
#else
REDIST := 'http://dl.hexchat.net/misc/vcredist_2013_x86.exe';
PERL := 'http://dl.hexchat.net/misc/perl/Perl%205.18.0%20x86.msi';
PERL := 'http://dl.hexchat.net/misc/perl/Perl-5.18.2-x86.exe';
PY2 := 'http://python.org/ftp/python/2.7.5/python-2.7.5.msi';
PY3 := 'http://python.org/ftp/python/3.3.2/python-3.3.2.msi';
#endif
@ -274,7 +274,7 @@ begin
idpAddFile(SPELL, ExpandConstant('{tmp}\spelling-dicts.exe'));
if IsComponentSelected('langs\perl') and not CheckDLL('perl518.dll') then
idpAddFile(PERL, ExpandConstant('{tmp}\perl.msi'));
idpAddFile(PERL, ExpandConstant('{tmp}\perl.exe'));
if IsComponentSelected('langs\python\python2') and not CheckDLL('python27.dll') then
idpAddFile(PY2, ExpandConstant('{tmp}\python.msi'));