source: release-kits/lirk2/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: 2.4 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
28 type="input"
29 name="intro"
30 displayText=""
31 <!-- start source release -->
32 target="Source Release"
33 <!-- end source release -->
34 >
35
36 <comment name="welcome-message"/>
37 </page>
38
39 <!-- type="license" shows a license page to click through -->
40 <page type="license" name="license" resource="/LICENSE.txt" displayText="" />
41
42 <!-- install destination page -->
43 <page type="input" name="destination" displayText="">
44
45 <directory property="installDir"
46 defaultValue="/usr/local/Greenstone2"
47 create="true"
48 displayText="" />
49
50 </page>
51
52 <!-- start binary release -->
53 <page type="input" name="selector" displayText="">
54 <comment name="choose-components"/>
55
56 <target
57 target="Initialising"
58 diskRequirement="x"
59 defaultValue="true"
60 displayText="x"
61 force="true"
62 hidden="true"/>
63
64 <target
65 target="Installing Core System"
66 diskRequirement="@component.size.core@"
67 displayText=""
68 defaultValue="true"
69 force="true"/>
70
71 <!-- start bundled components -->
72 <target
73 target="Installing ImageMagick"
74 diskRequirement="@component.size.imagemagick@"
75 defaultValue="true"
76 displayText=""/>
77 <!-- end bundled components -->
78
79 </page>
80
81 <page type="input" name="admin-password" displayText="">
82 <comment name="admin-password-expl"/>
83 <text property="admin.password" defaultValue="" displayText=""/>
84 </page>
85 <!-- end binary release -->
86
87 <page type="progress" name="progress" showTargets="true" displayText=""/>
88
89</installer>
Note: See TracBrowser for help on using the repository browser.