-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.xml
83 lines (71 loc) · 3 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
<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
<installation version="1.0">
<info>
<appname>jTracert</appname>
<appversion>0.1.3</appversion>
<authors>
<author name="Dmitry Bedrin" email="Dmitry.Bedrin@gmail.com"/>
</authors>
<url>http://jtracert.googlecode.com/</url>
<javaversion>1.5</javaversion>
</info>
<guiprefs width="640" height="480" resizable="yes"/>
<locale>
<langpack iso3="eng"/>
</locale>
<resources>
<res id="LicencePanel.licence" src="license.txt"/>
<res id="InfoPanel.info" src="readme.txt"/>
<res id="shortcutSpec.xml" src="default_shortcut_specification.xml"/>
<res id="Unix_shortcutSpec.xml" src="unix_shortcut_specification.xml"/>
</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="FinishPanel"/>
</panels>
<packs>
<pack name="jTracert" required="yes">
<description>jTracert base package - contains all required binaries</description>
<file src="readme.txt" targetdir="$INSTALL_PATH"/>
<file src="license.txt" targetdir="$INSTALL_PATH"/>
<file src="bin/jtracert.cmd" targetdir="$INSTALL_PATH"/> <!-- make win32 only -->
<file src="deploy/jTracert.exe" targetdir="$INSTALL_PATH"/> <!-- make win32 only -->
<file src="jTracert.png" targetdir="$INSTALL_PATH"/>
<file src="jTracert.ico" targetdir="$INSTALL_PATH"/>
<file src="setup.ico" targetdir="$INSTALL_PATH"/>
<file src="bin/jtracert.sh" targetdir="$INSTALL_PATH"/>
<file src="deploy/jTracert.jar" targetdir="$INSTALL_PATH"/>
<file src="deploy/jTracert-gui.jar" targetdir="$INSTALL_PATH"/>
<file src="deploy/sdedit-3.0.5.jar" targetdir="$INSTALL_PATH"/>
<executable
targetfile="$INSTALL_PATH/jtracert.sh"
stage="never"
keep="true"
/>
</pack>
<pack name="Sources" required="no">
<description>jTracert sources</description>
<fileset
targetdir="$INSTALL_PATH/sources"
dir="."
excludes="samples/**, classes/**, deploy/**, release/**, *.iml, *.ipr, *.iws"/>
</pack>
<pack name="Integration tests" required="no">
<depends packname="Sources"/>
<description>Integration tests</description>
<fileset
targetdir="$INSTALL_PATH/sources"
dir="."
includes="samples/**"/>
</pack>
</packs>
<native type="izpack" name="ShellLink.dll">
<os family="windows"/>
</native>
</installation>