forked from andrew-jacobs/dev65
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-installer.xml
More file actions
69 lines (62 loc) · 2.19 KB
/
build-installer.xml
File metadata and controls
69 lines (62 loc) · 2.19 KB
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
<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
<installation version="1.0">
<!--
<izpack:installation version="5.0"
xmlns:izpack="http://izpack.org/schema/installation"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://izpack.org/schema/installation http://izpack.org/schema/5.0/izpack-installation-5.0.xsd">
-->
<info>
<appname>dev65</appname>
<appversion>from 2021-08-23</appversion>
<appsubpath>dev65</appsubpath>
<javaversion>1.4</javaversion>
<url>https://github.com/gungwald/dev65</url>
<authors>
<author name="Andres Jacobs (original author)" email=""/>
<author name="Bill Chatfield (installer, run scripts)" email="bill_chatfield@yahoo.com"/>
</authors>
<run-privileged condition="izpack.windowsinstall" uninstaller="yes"/>
</info>
<locale>
<langpack iso3="eng"/>
</locale>
<guiprefs width="640" height="480" resizable="yes">
<modifier key="useHeadingPanel" value="yes" />
<modifier key="labelFontSize" value="1.3"/>
<modifier key="allYGap" value="20"/>
</guiprefs>
<panels>
<panel classname="HelloPanel"/>
<!-- <panel classname="DataCheckPanel"/> -->
<panel classname="TargetPanel"/>
<panel classname="InstallPanel"/>
<panel classname="SimpleFinishPanel"/>
</panels>
<packs>
<pack name="core" required="yes">
<description>The core files needed for the application</description>
<fileset dir="build/dev65-setup" targetdir="${INSTALL_PATH}"
override="true"/>
<executable targetfile="$INSTALL_PATH/bin/as65"
type="bin" stage="never" failure ="warn" keep="true" >
<os family="unix" />
<os family="mac" />
</executable>
<executable targetfile="$INSTALL_PATH/bin/lk65"
type="bin" stage="never" failure ="warn" keep="true" >
<os family="unix" />
<os family="mac" />
</executable>
<executable targetfile="$INSTALL_PATH/bin/add-to-path"
stage="postinstall" failure="warn" keep="true">
<os family="unix" />
<os family="mac" />
<os family="windows" />
<args>
<arg value="$INSTALL_PATH/bin"/>
</args>
</executable>
</pack>
</packs>
</installation>