-
Notifications
You must be signed in to change notification settings - Fork 73
/
install.xml
85 lines (84 loc) · 4.17 KB
/
install.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
<?xml version="1.0" encoding="iso-8859-15" standalone="yes"?>
<installation version="1.0">
<info>
<appname>@name@</appname>
<appversion>@version@</appversion>
<authors>
<author name="Mirko Sertic" email="[email protected]"/>
<author name="Elton Xia" email="[email protected]"/>
<author name="Owenm" email="[email protected]"/>
<author name="Dr. Death" email="[email protected]"/>
<author name="Jonathan Luckcuck" email="[email protected]"/>
</authors>
<url>http://mogwai.sourceforge.net</url>
<javaversion>1.7</javaversion>
<requiresjdk>no</requiresjdk>
<run-privileged condition="izpack.windowsinstall|izpack.macinstall"/>
</info>
<guiprefs width="640" height="480" resizable="no">
<modifier key="useButtonIcons" value="no"/>
<modifier key="useLabelIcons" value="no"/>
<modifier key="labelGap" value="2"/>
<modifier key="layoutAnchor" value="NORTHWEST"/>
<modifier key="useHeadingPanel" value="yes"/>
<modifier key="headingImageOnLeft" value="yes"/>
<modifier key="headingLineCount" value="1"/>
<modifier key="headingFontSize" value="1.5"/>
<modifier key="headingBackgroundColor" value="0x00ffffff"/>
<modifier key="headingPanelCounter" value="text"/>
<modifier key="headingPanelCounterPos" value="inHeading"/>
</guiprefs>
<locale>
<langpack iso3="eng"/>
</locale>
<resources>
<res id="LicencePanel.licence" src="LICENSE"/>
<res src="install_shortcutspec.xml" id="shortcutSpec.xml"/>
<res src="install_unix_shortcutspec.xml" id="Unix_shortcutSpec.xml"/>
</resources>
<panels>
<panel classname="HelloPanel"/>
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="PacksPanel"/>
<panel classname="InstallPanel"/>
<panel classname="ShortcutPanel"/>
<panel classname="FinishPanel"/>
</panels>
<packs>
<pack name="Base" required="yes">
<description>Core</description>
<file src="LICENSE_MOGWAI.txt" targetdir="$INSTALL_PATH"/>
<file src="RELEASENOTES.txt" targetdir="$INSTALL_PATH"/>
<file src="run.bat" targetdir="$INSTALL_PATH"/>
<file src="run.sh" targetdir="$INSTALL_PATH" os="unix"/>
<file src="run64.sh" targetdir="$INSTALL_PATH" os="unix"/>
<file src="run.sh" targetdir="$INSTALL_PATH" os="mac"/>
<file src="run64.sh" targetdir="$INSTALL_PATH" os="mac"/>
<file src="lib" targetdir="$INSTALL_PATH"/>
<file src="java3d" targetdir="$INSTALL_PATH"/>
<file src="reports" targetdir="$INSTALL_PATH"/>
<executable os="unix" targetfile="$INSTALL_PATH/run.sh"
stage="never"/>
<executable os="unix" targetfile="$INSTALL_PATH/java3d/linux32/libj3dcore-ogl-cg.so"
stage="never"/>
<executable os="unix" targetfile="$INSTALL_PATH/java3d/linux32/libj3dcore-ogl.so"
stage="never"/>
<executable os="unix" targetfile="$INSTALL_PATH/java3d/linux64/libj3dcore-ogl.so"
stage="never"/>
<executable os="mac" targetfile="$INSTALL_PATH/run.sh"
stage="never"/>
<executable os="mac" targetfile="$INSTALL_PATH/java3d/linux32/libj3dcore-ogl-cg.so"
stage="never"/>
<executable os="mac" targetfile="$INSTALL_PATH/java3d/linux32/libj3dcore-ogl.so"
stage="never"/>
<executable os="mac" targetfile="$INSTALL_PATH/java3d/linux64/libj3dcore-ogl.so"
stage="never"/>
</pack>
<pack name="Sources" required="no" preselected="yes">
<description>The sources</description>
<file src="src" targetdir="$INSTALL_PATH"/>
</pack>
</packs>
<native type="izpack" name="ShellLink.dll"/>
</installation>