qemu/qga/installer/qemu-ga.wxs
<<
>>
Prefs
   1<?xml version="1.0" encoding="UTF-8"?>
   2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
   3  <?ifndef env.QEMU_GA_VERSION ?>
   4    <?error Environment variable QEMU_GA_VERSION undefined?>
   5  <?endif?>
   6
   7  <?ifndef env.QEMU_GA_DISTRO ?>
   8    <?error Environment variable QEMU_GA_DISTRO undefined?>
   9  <?endif?>
  10
  11  <?ifndef env.QEMU_GA_MANUFACTURER ?>
  12    <?error Environment variable QEMU_GA_MANUFACTURER undefined?>
  13  <?endif?>
  14
  15  <?ifndef var.Arch?>
  16    <?error Define Arch to 32 or 64?>
  17  <?endif?>
  18
  19  <?ifndef var.Mingw_bin?>
  20    <?if $(var.Arch) = "64"?>
  21      <?define Mingw_bin=/usr/x86_64-w64-mingw32/sys-root/mingw/bin ?>
  22    <?endif?>
  23    <?if $(var.Arch) = "32"?>
  24      <?define Mingw_bin=/usr/i686-w64-mingw32/sys-root/mingw/bin ?>
  25    <?endif?>
  26  <?endif?>
  27
  28  <?if $(var.Arch) = "64"?>
  29    <?define ArchLib=libgcc_s_seh-1.dll?>
  30    <?define GaProgramFilesFolder="ProgramFiles64Folder" ?>
  31  <?endif?>
  32
  33  <?if $(var.Arch) = "32"?>
  34    <?define ArchLib=libgcc_s_dw2-1.dll?>
  35    <?define GaProgramFilesFolder="ProgramFilesFolder" ?>
  36  <?endif?>
  37
  38  <?ifndef var.ArchLib ?>
  39    <?error Unexpected Arch value $(var.Arch)?>
  40  <?endif?>
  41
  42  <Product
  43    Name="QEMU guest agent"
  44    Id="*"
  45    UpgradeCode="{EB6B8302-C06E-4BEC-ADAC-932C68A3A98D}"
  46    Manufacturer="$(env.QEMU_GA_MANUFACTURER)"
  47    Version="$(env.QEMU_GA_VERSION)"
  48    Language="1033">
  49    <?if $(var.Arch) = 32 ?>
  50    <Condition Message="Error: 32-bit version of Qemu GA can not be installed on 64-bit Windows.">NOT VersionNT64</Condition>
  51    <?endif?>
  52    <Package
  53      Manufacturer="$(env.QEMU_GA_MANUFACTURER)"
  54      InstallerVersion="200"
  55      Languages="1033"
  56      Compressed="yes"
  57      InstallScope="perMachine"
  58      />
  59    <Media Id="1" Cabinet="qemu_ga.$(env.QEMU_GA_VERSION).cab" EmbedCab="yes" />
  60    <Property Id="WHSLogo">1</Property>
  61    <MajorUpgrade
  62      DowngradeErrorMessage="Error: A newer version of QEMU guest agent is already installed."
  63      />
  64
  65    <Directory Id="TARGETDIR" Name="SourceDir">
  66      <Directory Id="$(var.GaProgramFilesFolder)" Name="QEMU Guest Agent">
  67        <Directory Id="qemu_ga_directory" Name="Qemu-ga">
  68          <Component Id="qemu_ga" Guid="{908B7199-DE2A-4DC6-A8D0-27A5AE444FEA}">
  69            <File Id="qemu_ga.exe" Name="qemu-ga.exe" Source="$(env.BUILD_DIR)/qga/qemu-ga.exe" KeyPath="yes" DiskId="1"/>
  70            <ServiceInstall
  71              Id="ServiceInstaller"
  72              Type="ownProcess"
  73              Vital="yes"
  74              Name="QEMU-GA"
  75              DisplayName="QEMU Guest Agent"
  76              Description="QEMU Guest Agent"
  77              Start="auto"
  78              Account="LocalSystem"
  79              ErrorControl="ignore"
  80              Interactive="no"
  81              Arguments="-d --retry-path"
  82              >
  83            </ServiceInstall>
  84            <ServiceControl Id="StartService" Start="install" Stop="both" Remove="uninstall" Name="QEMU-GA" Wait="yes" />
  85          </Component>
  86          <?ifdef var.InstallVss?>
  87          <Component Id="libstdc++_6_lib" Guid="{55E737B5-9127-4A11-9FC3-A29367714574}">
  88            <File Id="libstdc++-6.lib" Name="libstdc++-6.dll" Source="$(var.Mingw_bin)/libstdc++-6.dll" KeyPath="yes" DiskId="1"/>
  89          </Component>
  90          <Component Id="qga_vss_dll" Guid="{CB19C453-FABB-4BB1-ABAB-6B74F687BFBB}">
  91            <File Id="qga_vss.dll" Name="qga-vss.dll" Source="$(env.BUILD_DIR)/qga/vss-win32/qga-vss.dll" KeyPath="yes" DiskId="1"/>
  92          </Component>
  93          <Component Id="qga_vss_tlb" Guid="{D8D584B1-59C2-4FB7-A91F-636FF7BFA66E}">
  94            <File Id="qga_vss.tlb" Name="qga-vss.tlb" Source="$(env.BUILD_DIR)/qga/vss-win32/qga-vss.tlb" KeyPath="yes" DiskId="1"/>
  95          </Component>
  96          <?endif?>
  97          <?if $(var.Arch) = "32"?>
  98          <Component Id="gspawn-helper-console" Guid="{446185B3-87BE-43D2-96B8-0FEFD9E8696D}">
  99            <File Id="gspawn-win32-helper-console.exe" Name="gspawn-win32-helper-console.exe" Source="$(var.Mingw_bin)/gspawn-win32-helper-console.exe" KeyPath="yes" DiskId="1"/>
 100          </Component>
 101          <Component Id="gspawn-helper" Guid="{CD67A5A3-2DB1-4DA1-A67A-8D71E797B466}">
 102            <File Id="gspawn-win32-helper.exe" Name="gspawn-win32-helper.exe" Source="$(var.Mingw_bin)/gspawn-win32-helper-console.exe" KeyPath="yes" DiskId="1"/>
 103          </Component>
 104          <?endif?>
 105          <?if $(var.Arch) = "64"?>
 106          <Component Id="gspawn-helper-console" Guid="{9E615A9F-349A-4992-A5C2-C10BAD173660}">
 107            <File Id="gspawn-win64-helper-console.exe" Name="gspawn-win64-helper-console.exe" Source="$(var.Mingw_bin)/gspawn-win64-helper-console.exe" KeyPath="yes" DiskId="1"/>
 108          </Component>
 109          <Component Id="gspawn-helper" Guid="{D201AD22-1846-4E4F-B6E1-C7A908ED2457}">
 110            <File Id="gspawn-win64-helper.exe" Name="gspawn-win64-helper.exe" Source="$(var.Mingw_bin)/gspawn-win64-helper-console.exe" KeyPath="yes" DiskId="1"/>
 111          </Component>
 112          <?endif?>
 113          <Component Id="iconv" Guid="{35EE3558-D34B-4F0A-B8BD-430FF0775246}">
 114            <File Id="iconv.dll" Name="iconv.dll" Source="$(var.Mingw_bin)/iconv.dll" KeyPath="yes" DiskId="1"/>
 115          </Component>
 116          <Component Id="libgcc_arch_lib" Guid="{ADD4D07D-4515-4AB6-AF3E-C904961B4BB0}">
 117            <File Id="libgcc_arch_lib" Name="$(var.ArchLib)" Source="$(var.Mingw_bin)/$(var.ArchLib)" KeyPath="yes" DiskId="1"/>
 118          </Component>
 119          <Component Id="libglib" Guid="{D31BFD83-2773-4B65-B45A-E0D2ADA58679}">
 120            <File Id="libglib_2.0_0.dll" Name="libglib-2.0-0.dll" Source="$(var.Mingw_bin)/libglib-2.0-0.dll" KeyPath="yes" DiskId="1"/>
 121          </Component>
 122          <Component Id="libintl" Guid="{A641BC2D-A907-4A94-9149-F30ED430878F}">
 123            <File Id="libintl_8.dll" Name="libintl-8.dll" Source="$(var.Mingw_bin)/libintl-8.dll" KeyPath="yes" DiskId="1"/>
 124          </Component>
 125          <Component Id="libssp" Guid="{7880087B-02B4-4EF6-A5D3-D18F8E3D90E1}">
 126            <File Id="libssp_0.dll" Name="libssp-0.dll" Source="$(var.Mingw_bin)/libssp-0.dll" KeyPath="yes" DiskId="1"/>
 127          </Component>
 128          <Component Id="libwinpthread" Guid="{6C117C78-0F47-4B07-8F34-6BEE11643829}">
 129            <File Id="libwinpthread_1.dll" Name="libwinpthread-1.dll" Source="$(var.Mingw_bin)/libwinpthread-1.dll" KeyPath="yes" DiskId="1"/>
 130          </Component>
 131          <Component Id="libpcre" Guid="{7A86B45E-A009-489A-A849-CE3BACF03CD0}">
 132            <File Id="libpcre_1.dll" Name="libpcre-1.dll" Source="$(var.Mingw_bin)/libpcre-1.dll" KeyPath="yes" DiskId="1"/>
 133          </Component>
 134          <Component Id="registry_entries" Guid="{D075D109-51CA-11E3-9F8B-000C29858960}">
 135            <RegistryKey Root="HKLM"
 136                         Key="Software\$(env.QEMU_GA_MANUFACTURER)\$(env.QEMU_GA_DISTRO)\Tools\QemuGA">
 137              <RegistryValue Type="string" Name="ProductID" Value="fb0a0d66-c7fb-4e2e-a16b-c4a3bfe8d13b" />
 138              <RegistryValue Type="string" Name="Version" Value="$(env.QEMU_GA_VERSION)" />
 139            </RegistryKey>
 140          </Component>
 141        </Directory>
 142      </Directory>
 143    </Directory>
 144
 145    <Property Id="cmd" Value="cmd.exe"/>
 146    <Property Id="REINSTALLMODE" Value="amus"/>
 147
 148    <?ifdef var.InstallVss?>
 149    <CustomAction Id="RegisterCom"
 150              ExeCommand='/c "[qemu_ga_directory]qemu-ga.exe" -s vss-install'
 151              Execute="deferred"
 152              Property="cmd"
 153              Impersonate="no"
 154              Return="check"
 155              >
 156    </CustomAction>
 157    <CustomAction Id="UnRegisterCom"
 158              ExeCommand='/c "[qemu_ga_directory]qemu-ga.exe" -s vss-uninstall'
 159              Execute="deferred"
 160              Property="cmd"
 161              Impersonate="no"
 162              Return="check"
 163              >
 164    </CustomAction>
 165    <?endif?>
 166
 167    <Feature Id="QEMUFeature" Title="QEMU Guest Agent" Level="1">
 168      <ComponentRef Id="qemu_ga" />
 169      <?ifdef var.InstallVss?>
 170      <ComponentRef Id="libstdc++_6_lib" />
 171      <ComponentRef Id="qga_vss_dll" />
 172      <ComponentRef Id="qga_vss_tlb" />
 173      <?endif?>
 174      <ComponentRef Id="gspawn-helper-console" />
 175      <ComponentRef Id="gspawn-helper" />
 176      <ComponentRef Id="iconv" />
 177      <ComponentRef Id="libgcc_arch_lib" />
 178      <ComponentRef Id="libglib" />
 179      <ComponentRef Id="libintl" />
 180      <ComponentRef Id="libssp" />
 181      <ComponentRef Id="libwinpthread" />
 182      <ComponentRef Id="registry_entries" />
 183      <ComponentRef Id="libpcre" />
 184    </Feature>
 185
 186    <InstallExecuteSequence>
 187      <?ifdef var.InstallVss?>
 188      <Custom Action="UnRegisterCom" After="StopServices">Installed</Custom>
 189      <Custom Action="RegisterCom" After="InstallServices">NOT REMOVE</Custom>
 190      <?endif?>
 191    </InstallExecuteSequence>
 192  </Product>
 193</Wix>
 194