2015-02-06 02:08:48 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
|
|
<Fragment>
|
|
|
|
<PackageGroup Id="postinstall">
|
|
|
|
<MsiPackage Id="pip_AllUsers"
|
|
|
|
SourceFile="pip.msi"
|
|
|
|
Compressed="$(var.CompressMSI)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
|
|
ForcePerMachine="yes"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="InstallAllUsers and Include_pip and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
<MsiPackage Id="pip_JustForMe"
|
|
|
|
SourceFile="pip.msi"
|
|
|
|
Compressed="$(var.CompressMSI)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
|
|
ForcePerMachine="no"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="not InstallAllUsers and Include_pip and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
|
|
|
|
<MsiPackage Id="path_AllUsers"
|
|
|
|
SourceFile="path.msi"
|
|
|
|
Compressed="$(var.CompressMSI)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
|
|
ForcePerMachine="yes"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="InstallAllUsers and PrependPath and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
<MsiPackage Id="path_JustForMe"
|
|
|
|
SourceFile="path.msi"
|
|
|
|
Compressed="$(var.CompressMSI)"
|
|
|
|
DownloadUrl="$(var.DownloadUrl)"
|
|
|
|
ForcePerMachine="no"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="not InstallAllUsers and PrependPath and not LauncherOnly">
|
2015-02-06 02:08:48 -04:00
|
|
|
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
|
2015-07-09 00:18:44 -03:00
|
|
|
<MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</MsiPackage>
|
|
|
|
|
2015-07-04 15:48:37 -03:00
|
|
|
<?define CompileAllCommand=-$(var.ShortVersion)$(var.Suffix32) -E -s -Wi "[TargetDir]\Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py2_|lib2to3\\tests|venv\\scripts" "[TargetDir]\Lib"?>
|
2015-02-06 02:08:48 -04:00
|
|
|
<ExePackage Id="compileall_AllUsers"
|
|
|
|
SourceFile="py.exe"
|
|
|
|
Compressed="yes"
|
|
|
|
DisplayName="!(loc.CompileAllDescription)"
|
|
|
|
InstallCommand='$(var.CompileAllCommand)'
|
|
|
|
RepairCommand='$(var.CompileAllCommand)'
|
|
|
|
Permanent="yes"
|
|
|
|
PerMachine="yes"
|
|
|
|
Vital="no"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="InstallAllUsers and CompileAll and not LauncherOnly" />
|
2015-02-06 02:08:48 -04:00
|
|
|
<ExePackage Id="compileall_JustForMe"
|
|
|
|
SourceFile="py.exe"
|
|
|
|
Compressed="yes"
|
|
|
|
DisplayName="!(loc.CompileAllDescription)"
|
|
|
|
InstallCommand='$(var.CompileAllCommand)'
|
|
|
|
RepairCommand='$(var.CompileAllCommand)'
|
|
|
|
Permanent="yes"
|
|
|
|
PerMachine="no"
|
|
|
|
Vital="no"
|
2015-07-18 13:27:52 -03:00
|
|
|
InstallCondition="not InstallAllUsers and CompileAll and not LauncherOnly" />
|
2015-02-06 02:08:48 -04:00
|
|
|
</PackageGroup>
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|