source: release-kits/wirk2/installer/build.xml@ 18976

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

correct the perl shebang as part of the remote greenstone setup

File size: 8.5 KB
Line 
1<?xml version="1.0"?>
2<!--
3This is the build.xml run by AntInstaller for the installer
4-->
5
6<project name="Installation">
7
8 <!-- classpath -->
9 <path id="project.classpath"><pathelement path="${antinstaller.jar}"/></path>
10
11 <!-- custom tasks -->
12 <taskdef name="shortcut" classname="com.orangevolt.tools.ant.Win32ShortcutTask" classpathref="project.classpath"/>
13 <taskdef name="winprops" classname="com.orangevolt.tools.ant.Win32PropertiesTask" classpathref="project.classpath"/>
14 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
15 <typedef name="getfreepath" classname="org.greenstone.anttasks.GetFreePath" classpathref="project.classpath"/>
16 <typedef name="adduser" classname="org.greenstone.anttasks.AddGreenstoneUserToDatabase" classpathref="project.classpath"/>
17
18 <!-- pick up the properties generated during the install pages -->
19 <property file="${basedir}/ant.install.properties"/>
20
21 <!-- determine if there is an existing installation in the installDir-->
22 <available file="${installDir}\etc\installation.properties" property="is.overinstall"/>
23
24 <!-- load windows properties -->
25 <winprops/>
26
27 <!-- create a local installDir String -->
28 <path id="installDir.path"><pathelement location="${installDir}"/></path>
29 <property name="installDir.local" refid="installDir.path"/>
30
31 <target name="Looking For Previous Installation" if="is.overinstall">
32 <property file="${installDir}\etc\installation.properties"/>
33 <delete dir="${installed.startmenu.path}" failonerror="false"/>
34 </target>
35
36 <target name="Installing Core System">
37
38 <!-- figure out the start menu path -->
39 <getfreepath path="${win32.personal.programs_menu}\Greenstone-@version@" property="startmenu.path"/>
40 <path id="startmenu.path.path" path="${startmenu.path}"/>
41 <pathconvert targetos="unix" property="startmenu.path.unix" refid="startmenu.path.path"/>
42
43 <echo>basedir: ${basedir}</echo>
44 <echo>installDir: ${installDir}</echo>
45 <echo>antinstaller.jar: ${antinstaller.jar}</echo>
46 <echo>startmenu.path: ${startmenu.path}</echo>
47
48 <!-- create the installation directory -->
49 <echo message="Creating Installation directory"/>
50 <mkdir dir="${installDir}"/>
51
52 <!-- extract 7za tool -->
53 <unzip src="${antinstaller.jar}" dest="${basedir}">
54 <patternset><include name="7za.exe"/></patternset>
55 </unzip>
56
57 <!-- install files -->
58 <echo message="Installing Core Component"/>
59 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
60 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x core.lzma"/></exec>
61 <!--<sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/>-->
62 <delete file="core.lzma"/>
63 <unzip src="${basedir}/core.comp" dest="${installDir}"/>
64 <delete file="core.comp"/>
65
66 <!-- jre -->
67 <mkdir dir="${installDir}/packages"/>
68 <copy todir="${installDir}/packages/jre" failonerror="false">
69 <fileset dir="../@windows-java.extracted@"/>
70 </copy>
71
72 <echo message="Creating admin and demo users"/>
73 <adduser
74 txt2db="${installDir}/bin/windows/txt2db"
75 usersDb="${installDir}/etc/users.db"
76 username="admin"
77 password="${admin.password}"
78 groups="administrator,colbuilder"
79 comment="created at install time"/>
80 <adduser
81 txt2db="${installDir}/bin/windows/txt2db"
82 usersDb="${installDir}/etc/users.db"
83 username="demo"
84 password="demo"
85 groups="demo"
86 comment="Dummy 'demo' user with password 'demo' for authen-e collection"/>
87
88 <echo>Correcting perl shebangs in perl scripts</echo>
89 <property name="perl.executable" value="${installDir.local}\bin\windows\perl\perl.exe"/>
90 <rsr file="${installDir}/cgi-bin/gliserver.pl" pattern="^#!.*" replacement="#!${perl.executable} -w" lines="1"/>
91
92 <echo message="Creating installation properties file"/>
93 <echo file="${installDir}\etc\installation.properties">installed.startmenu.path:${startmenu.path.unix}</echo>
94
95 <echo message="Finished"/>
96
97 </target>
98
99 <target name="Installing ImageMagick">
100 <echo message="Installing ImageMagick"/>
101 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
102 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x imagemagick.lzma"/></exec>
103 <!--<sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/>-->
104 <delete file="imagemagick.lzma"/>
105 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/bin/windows"/>
106 <delete file="imagemagick.comp"/>
107 </target>
108
109 <target name="Installing Ghostscript">
110 <echo message="Installing GhostScript"/>
111 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
112 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ghostscript.lzma"/></exec>
113 <!--<sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/>-->
114 <delete file="ghostscript.lzma"/>
115 <unzip src="${basedir}/ghostscript.comp" dest="${installDir}/bin/windows"/>
116 <delete file="ghostscript.comp"/>
117 </target>
118
119 <!-- Start menu shortcuts -->
120 <target name="Installing Start Menu Shortcuts">
121
122 <mkdir dir="${startmenu.path}\Documentation"/>
123
124 <shortcut
125 file="${startmenu.path}\Greenstone Server.lnk"
126 execute="${installDir}\server.exe"
127 workingDirectory="${installDir}"
128 iconFile="${installDir}\images\serverico.ico"
129 iconIndex="0" />
130
131 <shortcut
132 file="${startmenu.path}\Librarian Interface (GLI).lnk"
133 execute="${installDir}\gli\gli.bat"
134 workingDirectory="${installDir}\gli"
135 iconFile="${installDir}\images\icon.ico"
136 iconIndex="0" />
137
138 <shortcut
139 file="${startmenu.path}\Metadata Set Editor (GEMS).lnk"
140 execute="${installDir}\gli\gems.bat"
141 workingDirectory="${installDir}\gli"
142 iconFile="${installDir}\images\gems.ico"
143 iconIndex="0" />
144
145 <shortcut
146 file="${startmenu.path}\Uninstall.lnk"
147 execute="${installDir}\Uninstall.bat"
148 workingDirectory="${installDir}"
149 iconFile="${installDir}\images\uninstall.ico"
150 iconIndex="0" />
151
152 <shortcut
153 file="${startmenu.path}\Documentation\READMEen.lnk"
154 execute="${installDir}\READMEen.txt" />
155
156 <shortcut
157 file="${startmenu.path}\Documentation\Greenstone Wiki.url"
158 url="http://wiki.greenstone.org" />
159
160 <shortcut
161 file="${startmenu.path}\Documentation\Greenstone Website.url"
162 url="http://www.greenstone.org" />
163
164<!--
165 <shortcut
166 file="${startmenu.path}\Documentation\READMEes.lnk"
167 execute="${installDir}\READMEes.txt" />
168
169 <shortcut
170 file="${startmenu.path}\Documentation\READMEar.lnk"
171 execute="${installDir}\READMEar.txt" />
172
173 <shortcut
174 file="${startmenu.path}\Documentation\READMEfr.lnk"
175 execute="${installDir}\READMEfr.txt" />
176
177 <shortcut
178 file="${startmenu.path}\Documentation\READMEru.lnk"
179 execute="${installDir}\READMEru.txt" />
180 -->
181
182 </target>
183
184 <target name="Source Release" depends="">
185
186 <!-- create the installation directory -->
187 <echo message="Creating Installation directory"/>
188 <mkdir dir="${installDir}"/>
189
190 <!-- extract 7za tool -->
191 <unzip src="${antinstaller.jar}" dest="${basedir}">
192 <patternset><include name="7za.exe"/></patternset>
193 </unzip>
194
195 <echo>Installing Source Release</echo>
196 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="source-release.lzma"/></patternset></unzip>
197 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x source-release.lzma"/></exec>
198 <delete file="source-release.lzma"/>
199 <unzip src="${basedir}/source-release.comp" dest="${installDir}"/>
200 <delete file="source-release.comp"/>
201
202 <!-- figure out the start menu path -->
203 <getfreepath path="${win32.personal.programs_menu}\Greenstone-@version@" property="startmenu.path"/>
204 <path id="startmenu.path.path" path="${startmenu.path}"/>
205 <pathconvert targetos="unix" property="startmenu.path.unix" refid="startmenu.path.path"/>
206
207 <echo message="Filling in concrete values in config files"/>
208 <rsr file="${installDir}/setup.bat" pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
209 <rsr file="${installDir}/cgi-bin/gsdlsite.cfg">
210 <job pattern="\*\*GSDLHOME\*\*" replacement="${installDir}"/>
211 <job pattern="^(#?httpprefix).*" replacement="$1 /gsdl"/>
212 <job pattern="^(#?httpimg).*" replacement="$1 /gsdl/images"/>
213 </rsr>
214
215 <echo>Create usage.txt</echo>
216 <echo file="${installDir}/etc/usage.txt"></echo>
217
218 <echo message="Creating installation properties file"/>
219 <echo file="${installDir}\etc\installation.properties">installed.startmenu.path:${startmenu.path.unix}</echo>
220
221 <echo message="Finished"/>
222
223 </target>
224
225
226</project>
Note: See TracBrowser for help on using the repository browser.