aboutsummaryrefslogtreecommitdiffstats
path: root/install.xml
blob: 8b207bdca8949173b83da3735505cafe8d6f3aa2 (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
<?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>
            <fileset dir="." targetdir="$INSTALL_PATH">
            	<include name="*"/>
            	<include name="lib/*.jar"/>
            	<exclude name="*.bat"/>
            	<exclude name="*.sh"/>
            	<exclude name="*.ico"/>
            </fileset>
            <executable type="jar" 
        		targetfile="$INSTALL_PATH/lib/jake2.jar"
        		class="jake2.install.Q2DataInstaller"
        		stage="postinstall"
        		keep="true">
        		<args>
        			<arg value="$INSTALL_PATH"/>
        		</args>
        	</executable>
        </pack>
        <pack name="Linux libraries and scripts" required="yes">
        	<os name="Linux" arch="i386"/>
        	<description>jogl and joal libraries for Linux</description>
        	<file src="lib/linux" targetdir="$INSTALL_PATH/lib"/>
        	<file src="Jake2.sh" targetdir="$INSTALL_PATH"/>
        	<executable targetfile="$INSTALL_PATH/Jake2.sh" stage="never"/>
        </pack>
            <pack name="Windows libraries and scripts" required="yes">
        	<os family="windows"/>
        	<description>jogl and joal libraries for Windows</description>
        	<file src="lib/windows" targetdir="$INSTALL_PATH/lib"/>
        	<file src="Jake2.bat" targetdir="$INSTALL_PATH"/>
        	<executable targetfile="$INSTALL_PATH/Jake2.bat" stage="never"/>
        </pack>
    </packs>
    
    <native type="izpack" name="ShellLink.dll"/>
    
</installation>