-
Notifications
You must be signed in to change notification settings - Fork 9
/
masques.xml
executable file
·95 lines (82 loc) · 2.96 KB
/
masques.xml
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="iso-8859-1" standalone="yes" ?>
<installation version="1.0">
<!--
The info section.
The meaning of the tags should be natural ...
-->
<info>
<appname>Masques</appname>
<appversion>@versionID@</appversion>
<authors>
<author name="Matthew Courtney" email="[email protected]"/>
</authors>
<url>http://findmasques.org</url>
<run-privileged/>
</info>
<variables>
<variable name="DesktopShortcutCheckboxEnabled" value="true"/>
<!-- This automatically checks the "Create Desktop Shortcuts" button. Default value is "False". -->
</variables>
<!--
The gui preferences indication.
Sets the installer window to 640x480. It will not be able to change the size.
-->
<guiprefs width="1280" height="580" resizable="yes"/>
<!--
The locale section.
Asks here to include the English.
-->
<locale>
<langpack iso3="eng"/>
</locale>
<!--
The resources section.
The ids must be these ones if you want to use the LicencePanel and/or the InfoPanel.
-->
<resources>
<res id="LicencePanel.licence" src="install/gpl.txt"/>
<res id="Installer.image" src="install/masques_black.jpg" />
<res id="shortcutSpec.xml" src="install/default_shortcut_specification.xml"/>
<res id="RegistrySpec.xml" src="install/RegistrySpec.xml"/>
<res id="TargetPanel.dir" src="install/TargetDir.txt" />
</resources>
<native type="izpack" name="ShellLink.dll"/>
<native type="izpack" name="ShellLink_x64.dll" />
<native type="3rdparty" name="COIOSHelper.dll" stage="both">
<os family="windows"/>
</native>
<native type="3rdparty" name="COIOSHelper_x64.dll" stage="both">
<os family="windows"/>
</native>
<!-- The listeners section for CustomActions -->
<listeners>
<listener installer="RegistryInstallerListener" uninstaller="RegistryUninstallerListener">
<os family="windows"/>
</listener>
</listeners>
<!--
The panels section.
We indicate here which panels we want to use. The order will be respected.
-->
<panels>
<panel classname="HelloPanel"/>
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="PacksPanel"/>
<panel classname="InstallPanel"/>
<panel classname="ShortcutPanel"/>
<panel classname="SimpleFinishPanel"/>
</panels>
<!--
The packs section.
We specify here our packs.
-->
<packs>
<pack name="Base" required="yes">
<description>The base Masques files</description>
<file src="target/masques-@[email protected]" targetdir="$INSTALL_PATH/lib"/>
<fileset dir="lib" targetdir="$INSTALL_PATH/lib"/>
<fileset dir="pkg" targetdir="$INSTALL_PATH"/>
</pack>
</packs>
</installation>