mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 05:02:50 +01:00
win32: Update installer for new Perl
This commit is contained in:
parent
b1b6255f38
commit
8d77fd6a57
@ -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'));
|
||||
|
Loading…
Reference in New Issue
Block a user