blob: 74f1d28a6f48ced66d9df1424da4affcee9ccdf3 [file] [log] [blame]
Bruce Cran35922a22013-02-21 11:02:41 +01001<?xml version="1.0" encoding="utf-8"?>
2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3
4 <?if $(env.FIO_ARCH) = x86 ?>
5 <?define ProgramDirectory = ProgramFilesFolder ?>
6 <?else?>
7 <?define ProgramDirectory = ProgramFiles64Folder ?>
8 <?endif?>
9
10 <Product Id="*"
11 Codepage="1252" Language="1033"
12 Manufacturer="fio" Name="fio"
Jens Axboe0dfdb892015-02-27 08:30:04 -070013 UpgradeCode="2338A332-5511-43CF-B9BD-5C60496CCFCC" Version="2.2.6">
Bruce Cran35922a22013-02-21 11:02:41 +010014 <Package
15 Description="Flexible IO Tester"
16 InstallerVersion="301" Keywords="Installer,MSI,Database"
17 Languages="1033" Manufacturer="fio"
18 InstallScope="perMachine" InstallPrivileges="elevated" Compressed="yes"/>
19
20 <Media Id="1" Cabinet="Product.cab" EmbedCab="yes" CompressionLevel="high"/>
21
22 <Directory Id="TARGETDIR" Name="SourceDir">
23 <Directory Id="$(var.ProgramDirectory)">
24 <Directory Id="INSTALLDIR">
25 <Directory Id="fio" Name="fio">
26 <Component>
27 <File Source="..\..\fio.exe"/>
Bruce Cran30ba7222014-03-01 17:05:03 -070028 <Environment Action="set" Part="last" Id="PATH" Name="PATH" Value="[INSTALLDIR]fio\" System="yes"/>
Bruce Cran35922a22013-02-21 11:02:41 +010029 </Component>
30 <Component>
Bruce Crancc8350a2013-02-24 11:15:26 +000031 <File Id="README" Name="README.txt" Source="..\..\README"/>
Bruce Cran35922a22013-02-21 11:02:41 +010032 </Component>
33 <Component>
Bruce Crancc8350a2013-02-24 11:15:26 +000034 <File Id="REPORTING_BUGS" Name="REPORTING-BUGS.txt" Source="..\..\REPORTING-BUGS"/>
Bruce Cran35922a22013-02-21 11:02:41 +010035 </Component>
36 <Component>
Bruce Crancc8350a2013-02-24 11:15:26 +000037 <File Id="HOWTO" Name="HOWTO.txt" Source="..\..\HOWTO"/>
Bruce Cran35922a22013-02-21 11:02:41 +010038 </Component>
39 <Component>
Bruce Crancc8350a2013-02-24 11:15:26 +000040 <File Id="COPYING" Name="COPYING.txt" Source="..\..\COPYING"/>
41 </Component>
42 <Component>
43 <File Id="LICENSE" Name="LICENSE.txt" Source="..\..\LICENSE"/>
Bruce Cran35922a22013-02-21 11:02:41 +010044 </Component>
45 <Directory Id="examples" Name="examples"/>
46 </Directory>
47 </Directory>
48 </Directory>
49 </Directory>
50
51 <Feature Id="AlwaysInstall" Absent="disallow" ConfigurableDirectory="INSTALLDIR" Display="hidden" Level="1" Title="Flexible IO Tester">
52 <ComponentRef Id="fio.exe"/>
Bruce Cran35922a22013-02-21 11:02:41 +010053 <ComponentRef Id="HOWTO"/>
54 <ComponentRef Id="README"/>
55 <ComponentRef Id="REPORTING_BUGS"/>
56 <ComponentRef Id="COPYING"/>
Bruce Crancc8350a2013-02-24 11:15:26 +000057 <ComponentRef Id="LICENSE"/>
Bruce Cran35922a22013-02-21 11:02:41 +010058 <ComponentGroupRef Id="examples"/>
59 </Feature>
60
61 <Property Id="ARPURLINFOABOUT" Value="http://git.kernel.dk/?p=fio.git" />
62 <Property Id='ARPCONTACT'>fio@vger.kernel.org</Property>
63 <Property Id='ARPHELPLINK'>http://www.spinics.net/lists/fio/</Property>
Bruce Crancc8350a2013-02-24 11:15:26 +000064 <Property Id='ARPURLUPDATEINFO'>http://bluestop.org/fio/</Property>
Bruce Cran35922a22013-02-21 11:02:41 +010065
66 <WixVariable Id="WixUILicenseRtf" Value="eula.rtf" />
67
68 <UIRef Id="WixUI_Minimal"/>
69
Bruce Cran9f873e22013-04-15 14:39:58 +020070 <MajorUpgrade AllowDowngrades="no" DowngradeErrorMessage="A newer version of the application is already installed."
71 AllowSameVersionUpgrades="yes"/>
Bruce Cran35922a22013-02-21 11:02:41 +010072</Product>
73</Wix>