postinstall.wxs 3.61 KB
Newer Older
1 2 3 4 5 6 7 8 9
<?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"
10
                        InstallCondition="InstallAllUsers and Include_pip and not LauncherOnly">
11
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
12
                <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
13 14 15 16 17 18
            </MsiPackage>
            <MsiPackage Id="pip_JustForMe"
                        SourceFile="pip.msi"
                        Compressed="$(var.CompressMSI)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="no"
19
                        InstallCondition="not InstallAllUsers and Include_pip and not LauncherOnly">
20
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
21
                <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
22 23 24 25 26 27 28
            </MsiPackage>
            
            <MsiPackage Id="path_AllUsers"
                        SourceFile="path.msi"
                        Compressed="$(var.CompressMSI)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="yes"
29
                        InstallCondition="InstallAllUsers and PrependPath and not LauncherOnly">
30
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
31
                <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
32 33 34 35 36 37
            </MsiPackage>
            <MsiPackage Id="path_JustForMe"
                        SourceFile="path.msi"
                        Compressed="$(var.CompressMSI)"
                        DownloadUrl="$(var.DownloadUrl)"
                        ForcePerMachine="no"
38
                        InstallCondition="not InstallAllUsers and PrependPath and not LauncherOnly">
39
                <MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
40
                <MsiProperty Name="OPTIONALFEATURESREGISTRYKEY" Value="[OptionalFeaturesRegistryKey]" />
41 42
            </MsiPackage>
            
43
            <?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"?>
44 45 46 47 48 49 50 51 52
            <ExePackage Id="compileall_AllUsers"
                        SourceFile="py.exe"
                        Compressed="yes"
                        DisplayName="!(loc.CompileAllDescription)"
                        InstallCommand='$(var.CompileAllCommand)'
                        RepairCommand='$(var.CompileAllCommand)'
                        Permanent="yes"
                        PerMachine="yes"
                        Vital="no"
53
                        InstallCondition="InstallAllUsers and CompileAll and not LauncherOnly" />
54 55 56 57 58 59 60 61 62
            <ExePackage Id="compileall_JustForMe"
                        SourceFile="py.exe"
                        Compressed="yes"
                        DisplayName="!(loc.CompileAllDescription)"
                        InstallCommand='$(var.CompileAllCommand)'
                        RepairCommand='$(var.CompileAllCommand)'
                        Permanent="yes"
                        PerMachine="no"
                        Vital="no"
63
                        InstallCondition="not InstallAllUsers and CompileAll and not LauncherOnly" />
64 65 66
        </PackageGroup>
    </Fragment>
</Wix>