blob: ab7ce5f8c4ef82f6679463afaeccbb62ad28a22f (
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
|
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product
UpgradeCode="A1B2C3D4-E5F6-A7B8-C9D0-E1F2A3B4C5D6"
Id="CABACABA-86C7-4D14-AEC0-86416A69ABDE"
Name="Lua4Win Installer 1.0"
Version="1.0.0.0"
Manufacturer="Lua4Win devs"
Language="1033"
Codepage="1252"
>
<Package
Id="*"
Description="Lua4Win Installation Package"
Keywords="Installer"
InstallerVersion="100"
Compressed="yes"
/>
<Media Id='1' Cabinet='media.cab' EmbedCab='yes' />
<Property Id="DiskPrompt" Value="Lua4Win lua+luarocks installation [1]" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="Lua4Win" Name="Lua4Win">
<Directory Id="INSTALLDIR" Name="Lua4Win 1.0">
<Component Id="luajit">
<File Id="luajitexe" DiskId='1' Source="luajit.exe" />
</Component>
<Component Id="luadl">
<File Id="lua51dll" DiskId='1' Source="lua51.dll" />
</Component>
<Component Id="luarocks">
<File Id="luarocksexe" DiskId='1' Source="luarocks.exe" />
</Component>
<Directory Id="Config" Name="config">
<Component Id="Config">
<File Id="config.lua" Source="config-5.1.lua" />
</Component>
</Directory>
<Component Id="EnvironmentPath" Guid="Lua4Win.PATH">
<Environment Id="Path" Name="PATH" Action="set" System="yes" Part="last" Value="[INSTALLDIR]"/>
</Component>
<Component Id="SysConfigPath" Guid="Lua4Win.SYSCONFDIR">
<Environment Id="Sysconfdir" Name="LUAROCKS_SYSCONFDIR" Action="set" System="yes" Part="last" Value="[INSTALLDIR]/config"/>
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<Feature Id="Complete" Level="1">
<ComponentRef Id="luajit" />
<ComponentRef Id="luadl" />
<ComponentRef Id="luarocks" />
<ComponentRef Id="Config" />
</Feature>
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
<UIRef Id="WixUI_InstallDir" />
</Product>
</Wix>
|