summaryrefslogtreecommitdiff
path: root/os/windows/install.wxs
blob: 6ab6ffe0575d2941a5af0ac6049455fb939058c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

<?define VersionMajor = 1?>
<?define VersionMinor = 44?>
<?define VersionBuild = 3?>

	<Product Id="*"
	  Codepage="1252" Language="1033"
	  Manufacturer="fio" Name="FIO"
	  UpgradeCode="{2338a332-5511-43cf-b9bd-5c60496ccfcc}" Version="$(var.VersionMajor).$(var.VersionMinor).$(var.VersionBuild)">
		<Package 
		  Comments="Contact: Your local administrator"
		  Description="Flexible IO Tester"
		  InstallerVersion="200" Keywords="Installer,MSI,Database"
		  Languages="1033" Manufacturer="fio" Platform="x86"
		  InstallScope="perMachine" InstallPrivileges="elevated" Compressed="yes"/>

		<Media Id="1" Cabinet="Product.cab" EmbedCab="yes" />

		<Directory Id="TARGETDIR" Name="SourceDir">
			<Directory Id="ProgramFilesFolder" SourceName="program files">
				<Directory Id="INSTALLDIR">
					<Directory Id="cygwin" Name="FIO">
						<Directory Id="bin" Name="bin">
							<Component Id="fio.exe" Location="either">
								<File Id="fio.exe" Name="fio.exe" KeyPath="yes" Source="..\..\fio.exe"/>
							</Component>
						</Directory>
						
						<Component Id="fio.lnk" Location="either">
							<File Id="fio.lnk" Name="FIO.lnk" KeyPath="yes" Source="FIO.lnk"/>
							<Shortcut Id="FIO_SC" Name="FIO" Description="Opens an FIO shell" Directory="ApplicationProgramsFolder" Target="[cygwin]\FIO.lnk"/>
						</Component>

						<Directory Id="examples" Name="examples"/>
						<Component Id="README">
							<File Id="README" Name="README.txt" KeyPath="yes" Source="..\..\README"/>
							<Shortcut Id="README_SC" Name="Readme" Description="Documentation" Directory="ApplicationProgramsFolder" Target="[#README]"/>
						</Component>
						<Component Id="REPORTING_BUGS">
							<File Id="REPORTING_BUGS" Name="REPORTING-BUGS.txt" KeyPath="yes" Source="..\..\REPORTING-BUGS"/>
							<Shortcut Id="REPORTING_BUGS_SC" Name="Reporting bugs" Description="How to report bugs in FIO" Directory="ApplicationProgramsFolder" Target="[#REPORTING_BUGS]"/>
						</Component>
						<Component Id="HOWTO">
							<File Id="HOWTO" Name="HOWTO.txt" KeyPath="yes" Source="..\..\HOWTO"/>
							<Shortcut Id="HOWTO_SC" Name="How to use FIO" Description="FIO Tutorial - how to setup FIO" Directory="ApplicationProgramsFolder" Target="[#HOWTO]"/>
						</Component>
						<Component Id="COPYING">
							<File Id="COPYING" Name="COPYING.txt" KeyPath="yes" Source="..\..\COPYING"/>
							<Shortcut Id="COPYING_SC" Name="License" Description="FIO license" Directory="ApplicationProgramsFolder" Target="[#COPYING]"/>
						</Component>
					</Directory>
				</Directory>
			</Directory>
			<Directory Id="ProgramMenuFolder">
			<Directory Id="ApplicationProgramsFolder" Name="FIO">
				<Component Id="ShortcutDir" Guid="475862c2-ae75-4325-96c8-335edb490214">
					<RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
				</Component>
			</Directory>
		</Directory>
	</Directory>

	<Feature Id="AlwaysInstall" Absent="disallow" ConfigurableDirectory="INSTALLDIR" Display="hidden" Level="1" Title="Always Install">
		<ComponentRef Id="fio.exe" />
		<ComponentRef Id="fio.lnk" />
		<ComponentGroupRef Id="examples"/>
		<ComponentGroupRef Id="cygwin"/>

		<ComponentRef Id="HOWTO"/>
		<ComponentRef Id="README"/>
		<ComponentRef Id="REPORTING_BUGS"/>
		<ComponentRef Id="COPYING"/>

		<ComponentRef Id="ShortcutDir"/>
	</Feature>
		
	<Property Id="ARPURLINFOABOUT" Value="http://git.kernel.dk/?p=fio.git" />
	<Property Id='ARPCONTACT'>fio@vger.kernel.org</Property>
	<Property Id='ARPHELPLINK'>http://www.spinics.net/lists/fio/</Property>
	<Property Id='ARPURLUPDATEINFO'>http://git.kernel.dk/?p=fio.git</Property>

	<WixVariable Id="WixUILicenseRtf" Value="eula.rtf" />

	<UIRef Id="WixUI_Minimal"/>

	<Condition Message="Per-User installations are not supported">
		Installed OR
		ALLUSERS=1
	</Condition>

	<MajorUpgrade AllowDowngrades="no" DowngradeErrorMessage="A newer version of the application is already installed."/>
</Product>
</Wix>