source: release-kits/wirk3/installer/antinstall-config.xml@ 17786

Last change on this file since 17786 was 17786, checked in by oranfry, 15 years ago

shifted the responsibility for the source release to the linux release kit. Made the source release contain a single component with the core and sourcecode mixed together

File size: 3.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE installer PUBLIC "-//tp23 //DTD Ant Installer Config//EN" "http://antinstaller.sf.net/dtd/antinstall-config-0.8.dtd">
3
4<installer
5 ui="swing,text"
6 verbose="true"
7 debug="false"
8 lookAndFeel="org.tp23.jgoodies.plaf.plastic.PlasticXPLookAndFeel"
9 name="Greenstone@version@ Installer"
10 windowIcon="/resources/icon.png"
11 defaultImageResource="/resources/header.png"
12 minJavaVersion="1.4">
13
14 <!-- select language page -->
15 <page type="input" name="language-selector" displayText="">
16 <comment name="language-selector-explanation"/>
17 <select property="language" defaultValue="en" displayText="" useAsLocale="true">
18 <option value="en" text="English"/>
19 <option value="fr" text="Français (French)"/>
20 <option value="es" text="Español (Spanish)"/>
21 <option value="ru" text="русскОй язык (Russian)"/>
22 <option value="zh" text="äž­æ–‡ (Chinese)"/>
23 </select>
24 </page>
25
26 <!-- simple intro page -->
27 <page type="input" name="intro" displayText="">
28 <comment name="welcome-message"/>
29 </page>
30
31 <!-- type="license" shows a license page to click through -->
32 <page type="license" name="license" resource="/LICENSE.txt" displayText="" />
33
34 <!-- install destination page -->
35 <page type="input" name="destination" displayText="">
36
37 <directory property="installDir"
38 defaultValue="${env.ProgramFiles}\Greenstone3"
39 create="true"
40 displayText="" />
41
42 </page>
43
44 <!-- start binary release -->
45 <page type="input" name="selector" displayText="">
46 <comment name="choose-components"/>
47
48 <target
49 target="Looking For Previous Installation"
50 diskRequirement="x"
51 defaultValue="true"
52 displayText="x"
53 force="true"
54 hidden="true"/>
55
56 <target
57 target="Installing Core System"
58 diskRequirement="@component.size.core@"
59 displayText=""
60 defaultValue="true"
61 force="true"/>
62
63 <target
64 target="Installing Start Menu Shortcuts"
65 diskRequirement="~10 KB"
66 defaultValue="true"
67 displayText=""/>
68
69 <!-- start bundled components -->
70 <target
71 target="Installing Tomcat"
72 diskRequirement="@component.size.tomcat@"
73 defaultValue="true"
74 displayText=""/>
75
76 <target
77 target="Installing Ant"
78 diskRequirement="@component.size.ant@"
79 defaultValue="true"
80 displayText=""/>
81
82 <target
83 target="Installing ImageMagick"
84 diskRequirement="@component.size.imagemagick@"
85 defaultValue="true"
86 displayText=""/>
87
88 <target
89 target="Installing Ghostscript"
90 diskRequirement="@component.size.ghostscript@"
91 defaultValue="true"
92 displayText=""/>
93 <!-- end bundled components -->
94
95 </page>
96 <!-- end binary release -->
97
98 <!-- start bundled components -->
99 <page type="input" name="tomcat-config" ifProperty="(${Installing Tomcat}==true)" displayText="">
100
101 <text property="tomcat.server" defaultValue="localhost" displayText=""/>
102 <text property="tomcat.port" defaultValue="8080" displayText=""/>
103 <text property="tomcat.shutdown.port" defaultValue="8005" displayText=""/>
104
105 </page>
106 <!-- end bundled components -->
107
108 <page type="progress" name="progress" showTargets="true" displayText=""/>
109
110</installer>
Note: See TracBrowser for help on using the repository browser.