-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathizpack.xml
More file actions
130 lines (112 loc) · 5.26 KB
/
izpack.xml
File metadata and controls
130 lines (112 loc) · 5.26 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
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
<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>Kosher</appname>
<appversion>1.11.1</appversion>
<appsubpath>kosher</appsubpath>
<run-privileged/>
<uninstaller write="yes" />
<authors>
<author name="Clinton Bush" email="cbush06@gmail.com" />
</authors>
<url>https://github.com/cbush06/kosher</url>
</info>
<logging>
<log-file pattern="kosher-installer-log_%u-%g.log" append="true" level="ALL" encoding="UTF-8" />
</logging>
<resources>
<res id="Installer.image" src="installer-content/kosher_logo.png" parse="no" />
<res id="installer.langsel.img" src="installer-content/kosher_logo.png" parse="no" />
<res id="InfoPanel.info" src="README" />
<res id="LicencePanel.licence" src="LICENSE" />
<res id="CustomLangPack.xml_eng" src="installer-content/CustomLangPack.xml_eng" />
<res id="HTMLInfoPanel.ie-config-panel" src="installer-content/ie-config.html" />
<res id="ie.png" src="installer-content/ie.png" />
<res id="kosher_logo_big.png" src="installer-content/kosher_logo_big.png" />
<res id="HTMLInfoPanel.docs-panel" src="installer-content/documentation.html" />
<res id="HTMLInfoPanel.credits-panel" src="installer-content/credits.html" />
<res id="CGI_Federal.png" src="installer-content/CGI_Federal.png" />
</resources>
<locale>
<langpack iso3="eng" />
</locale>
<guiprefs width="800" height="600" resizable="yes">
<modifier key="useHeadingPanel" value="yes" />
</guiprefs>
<panels>
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="InstallPanel"/>
<panel classname="HTMLInfoPanel" id="ie-config-panel" condition="izpack.windowsinstall" />
<panel classname="HTMLInfoPanel" id="docs-panel" />
<panel classname="HTMLInfoPanel" id="credits-panel" />
<panel classname="FinishPanel"/>
</panels>
<packs name="core">
<pack id="core_unix" name="Kosher" required="yes" preselected="yes">
<description>Core Files</description>
<file src="kosher">
<os family="linux" />
</file>
<file src="kosher.exe">
<os family="windows" />
</file>
<file src="linux-config">
<os family="linux" />
</file>
<file src="windows-config.exe">
<os family="windows" />
</file>
<executable targetfile="$INSTALL_PATH/kosher" stage="never" keep="true">
<os family="linux" />
</executable>
<executable targetfile="$INSTALL_PATH/kosher.exe" stage="never" keep="true">
<os family="windows" />
</executable>
<executable targetfile="$INSTALL_PATH/linux-config" stage="postinstall" failure="warn" keep="true">
<os family="linux" />
<args>
<arg value="install" />
<arg value="$INSTALL_PATH" />
</args>
</executable>
<executable targetfile="$INSTALL_PATH/windows-config.exe" stage="postinstall" failure="warn" keep="true">
<os family="windows" />
<args>
<arg value="install" />
<arg value="$INSTALL_PATH" />
</args>
</executable>
<executable targetfile="$INSTALL_PATH/linux-config" stage="uninstall" failure="warn" keep="true">
<os family="linux" />
<args>
<arg value="uninstall" />
<arg value="$INSTALL_PATH" />
</args>
</executable>
<executable targetfile="$INSTALL_PATH/windows-config.exe" stage="uninstall" failure="warn" keep="true">
<os family="windows" />
<args>
<arg value="uninstall" />
<arg value="$INSTALL_PATH" />
</args>
</executable>
<fileset dir="." includes="LICENSE,README" />
<fileset dir="./libs" targetdir="${INSTALL_PATH}/libs" includes="chromedriver,phantomjs,axe.min.js">
<os family="linux" />
</fileset>
<executable type="bin" stage="never" failure="ask" keep="true">
<os family="linux" />
<fileset targetdir="${INSTALL_PATH}/libs" includes="chromedriver,phantomjs" />
</executable>
<fileset dir="./libs" targetedir="${INSTALL_PATH}/libs" includes="chromedriver.exe,phantomjs.exe,IEDriverServer.exe,axe.min.js">
<os family="windows" />
</fileset>
<executable type="bin" stage="never" failure="ask" keep="true">
<os family="windows" />
<fileset targetdir="${INSTALL_PATH}/libs" includes="chromedriver.exe,phantomjs.exe,IEDriverServer.exe" />
</executable>
</pack>
</packs>
</izpack:installation>