aboutsummaryrefslogtreecommitdiffstats
path: root/install.xml
blob: 871b7877b567ece66173661799bdc4280e6ed397 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>


<installation version="1.0">

    <info>
        <appname>Jake2</appname>
        <appversion>cvs</appversion>
        <authors>
            <author name="Bytonic Software" email="jake2@bytonic.de"/>
        </authors>
        <url>http://www.bytonic.de</url>
    </info>
    
    <guiprefs width="640" height="480" resizable="no"/>
    
    <locale>
        <langpack iso3="eng"/>
    </locale>
    
    <resources>
        <res id="LicencePanel.licence" src="LICENSE"/>
        <res id="InfoPanel.info" src="README"/>
        <!-- res src="../shortcutSpec.xml" id="shortcutSpec.xml" / -->
        <!-- res id="Installer.image" src="../resources/icon.png"/ -->
    </resources>
    
    <panels>
        <panel classname="HelloPanel"/>
        <panel classname="InfoPanel"/>
        <panel classname="LicencePanel"/>
        <panel classname="TargetPanel"/> 
        <panel classname="PacksPanel"/>
        <panel classname="InstallPanel"/>
        <!-- panel classname="ShortcutPanel"/ -->
        <panel classname="SimpleFinishPanel"/>
    </panels>
    
    <packs>
        <pack name="Jake2" required="yes">
            <description>Jake2 files</description>
            <os family="windows"/>
            <fileset dir="." targetdir="$INSTALL_PATH">
            	<include name="*"/>
            	<include name="lib/jake2.jar"/>
            	<exclude name="*.sh"/>
            	<exclude name="*lwjgl.bat"/>
            </fileset>
        </pack>
        <pack name="Jake2" required="yes">
            <description>Jake2 files</description>
            <os name="Linux"/>
            <fileset dir="." targetdir="$INSTALL_PATH">
            	<include name="*"/>
            	<include name="lib/jake2.jar"/>
            	<exclude name="*.bat"/>
            	<exclude name="*mac.sh"/>
            	<exclude name="*lwjgl.sh"/>
            </fileset>
            <executable targetfile="$INSTALL_PATH/Jake2.sh"/>
        </pack>
        <pack name="Jake2" required="yes">
            <description>Jake2 files</description>
            <os name="Mac OS X"/>
            <fileset dir="." targetdir="$INSTALL_PATH">
            	<include name="*"/>
            	<include name="lib/jake2.jar"/>
            	<exclude name="*.bat"/>
            	<exclude name="*.sh"/>
            	<include name="*mac.sh"/>
            </fileset>
            <executable targetfile="$INSTALL_PATH/Jake2_mac.sh"/>
        </pack>                
        
        <pack name="jogl OpenGL library" required="yes">
        	<description>default OpenGL library</description>
        	<os family="windows"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">
        		<include name="windows/jogl*"/>
        		<include name="jogl.jar"/>
        	</fileset>
        </pack>
        <pack name="jogl OpenGL library" required="yes">
        	<description>default OpenGL library</description>
			<os name="Linux"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">      		
        		<include name="linux/*jogl*"/>
        		<include name="jogl.jar"/>
        	</fileset>
        </pack>
        <pack name="jogl OpenGL library" required="yes">
        	<description>default OpenGL library</description>
			<os name="Mac OS X"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">      		
         		<include name="osx/*jogl*"/>
        		<include name="jogl.jar"/>
        	</fileset>
        </pack>        
               
        <pack name="joal sound library" required="no">
        	<description>default sound library</description>
        	<os family="windows"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">
        		<include name="windows/joal*"/>
        		<include name="windows/OpenAL*"/>
        	</fileset>
        </pack>
        <pack name="joal sound library" required="no">
        	<description>default sound library</description>
        	<os name="Linux"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">
        		<include name="linux/*joal*"/>
        		<include name="linux/*openal*"/>
        	</fileset>
        </pack>        
        <pack name="joal sound library" required="no">
        	<description>default sound library</description>
        	<os name="Mac OS X"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">
        		<include name="osx/*joal*"/>
        		<include name="osx/*openal*"/>
        	</fileset>
        </pack>
        
        <pack name="lwjgl library" required="no">
        	<description>alternative OpenGL and sound driver</description>
        	<os family="windows"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">  		
        		<include name="windows/lwjgl*"/>
        		<include name="lwjgl*.jar"/>
        	</fileset>
        	<fileset dir="." targetdir="$INSTALL_PATH">
        		<include name="*lwjgl.bat"/>
        	</fileset>
        </pack>
        <pack name="lwjgl library" required="no">
        	<description>alternative OpenGL and sound driver</description>
        	<os name="Linux"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">
        		<include name="linux/lwjgl/*"/>
        		<include name="lwjgl*.jar"/>
        	</fileset>
        	<fileset dir="." targetdir="$INSTALL_PATH">
        		<include name="Jake2_lwjgl.sh"/>
        	</fileset>
        	<executable targetfile="$INSTALL_PATH/Jake2_lwjgl.sh"/>
        </pack>
        <pack name="lwjgl library" required="no">
        	<description>alternative OpenGL and sound driver</description>
        	<os name="Mac OS X"/>
        	<fileset dir="lib" targetdir="$INSTALL_PATH/lib">
        		<include name="osx/lwjgl/*"/>
        		<include name="lwjgl*.jar"/>
        	</fileset>
        	<fileset dir="." targetdir="$INSTALL_PATH">
        		<include name="Jake2_mac_lwjgl.sh"/>
        	</fileset>
        	<executable targetfile="$INSTALL_PATH/Jake2_mac_lwjgl.sh"/>
        </pack>                
    </packs>
    
    <!-- native type="izpack" name="ShellLink.dll"/ -->
    
</installation>