1 | <?xml version="1.0"?>
|
---|
2 | <!--
|
---|
3 | VirtualBox Windows Installation Script (WiX)
|
---|
4 |
|
---|
5 | Copyright (C) 2006-2020 Oracle Corporation
|
---|
6 |
|
---|
7 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | available from http://www.virtualbox.org. This file is free software;
|
---|
9 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | General Public License (GPL) as published by the Free Software
|
---|
11 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | -->
|
---|
15 |
|
---|
16 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
---|
17 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
18 |
|
---|
19 | <?include Defines.wxi ?>
|
---|
20 |
|
---|
21 | <Module Id="msm_VBoxPython"
|
---|
22 | Language="!(loc.LANG)"
|
---|
23 | Version="$(var.Property_Version)">
|
---|
24 |
|
---|
25 | <Package Id="0f4de366-a8f3-4842-a165-fb19251cde88"
|
---|
26 | Keywords="Installer"
|
---|
27 | Description="$(env.VBOX_PRODUCT) $(var.Property_VersionExt) Python bindings installation package"
|
---|
28 | Comments="$(env.VBOX_PRODUCT) Python bindings installation package"
|
---|
29 | Manufacturer="$(env.VBOX_VENDOR)"
|
---|
30 | InstallerVersion="200"
|
---|
31 | AdminImage="yes"
|
---|
32 | InstallPrivileges="elevated"
|
---|
33 | Platform="$(var.Property_Platform)"
|
---|
34 | SummaryCodepage="1252"/>
|
---|
35 |
|
---|
36 | <?include CommonProperties.wxi ?>
|
---|
37 | <?include PublicProperties.wxi ?>
|
---|
38 |
|
---|
39 | <!-- Here comes the file/directory list -->
|
---|
40 | <Directory Id="TARGETDIR" Name="SourceDir">
|
---|
41 | <Directory Id="msm_VBoxPythonFolder" FileSource=".">
|
---|
42 |
|
---|
43 | <?include VBoxMergePython.wxi ?>
|
---|
44 |
|
---|
45 | </Directory> <!-- msm_VBoxPythonFolder -->
|
---|
46 | </Directory> <!-- TARGETDIR -->
|
---|
47 |
|
---|
48 | <!-- Custom actions -->
|
---|
49 | <Binary Id="VBoxInstallHelper" SourceFile="$(env.PATH_OUT)\bin\VBoxInstallHelper.dll" />
|
---|
50 | <?include VBoxMergePythonCA.wxi ?>
|
---|
51 |
|
---|
52 | <InstallExecuteSequence>
|
---|
53 | <?include VBoxMergePythonSeq.wxi ?>
|
---|
54 | </InstallExecuteSequence>
|
---|
55 |
|
---|
56 | </Module>
|
---|
57 | </Wix>
|
---|