source: main/trunk/release-kits/kits/rk3/installer/build.xml@ 32975

Last change on this file since 32975 was 32975, checked in by sjm84, 5 years ago

Related to commit 32971. No longer grabbing prebuilt 32 bit wvWare. We now use the one release-kit was already locally building, now that the libpng dependency is resolved. So 64 bit wvWare binary on 64 bit linux and 32 bit on 32 bit linux.

File size: 18.8 KB
RevLine 
[14982]1<?xml version="1.0"?>
2<!--
3This is the build.xml run by AntInstaller for the installer
4-->
[15205]5<project name="Installation">
[14982]6
7 <!-- this is required to pick up the properties generated during the install pages -->
8 <property file="${basedir}/ant.install.properties"/>
9
[19935]10 <!-- custom tasks -->
11 <path id="project.classpath"><pathelement path="${antinstaller.jar}"/></path>
[14982]12
[24437]13 <typedef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
[25329]14 <!--<typedef name="adduser" classname="org.greenstone.anttasks.AddGreenstone3UserToDatabase" classpathref="project.classpath"/>-->
[19959]15 <!-- if linux|mac -->
[17468]16 <taskdef name="sevenzip" classname="org.apache.tools.ant.SevenZip" classpathref="project.classpath"/>
[19959]17 <!-- /if -->
[19935]18 <!-- if windows -->
19 <taskdef name="shortcut" classname="com.orangevolt.tools.ant.Win32ShortcutTask" classpathref="project.classpath"/>
20 <taskdef name="winprops" classname="com.orangevolt.tools.ant.Win32PropertiesTask" classpathref="project.classpath"/>
21 <typedef name="getfreepath" classname="org.greenstone.anttasks.GetFreePath" classpathref="project.classpath"/>
22 <!-- /if -->
[24437]23
24 <!-- set some properties to keep track of the OS -->
25 <!-- if windows -->
26 <property name="rk.os" value="windows"/>
27 <property name="shell.name" value="windows"/>
28 <!-- /if -->
29 <!-- if linux -->
30 <property name="rk.os" value="linux"/>
31 <property name="shell.name" value="linux"/>
32 <!-- /if -->
33 <!-- if mac -->
34 <property name="rk.os" value="mac"/>
35 <property name="shell.name" value="darwin"/>
36 <!-- /if -->
37
[14982]38
[19935]39 <!-- create a local and strictly unix installDir String -->
40 <path id="installDir.path"><pathelement location="${installDir}"/></path>
41 <property name="installDir.local" refid="installDir.path"/>
42 <pathconvert targetos="unix" property="installDir.unix" refid="installDir.path"/>
[14982]43
[19935]44 <!-- if windows -->
45 <!-- load windows properties -->
46 <winprops/>
47 <!-- /if -->
[30131]48
49 <!-- determine if there is an existing installation in the installDir-->
50 <available file="${installDir}\installation.properties" property="is.overinstall"/>
[19935]51
[30131]52 <!-- work out whether a jre was bundled with this installer. If it was, then for a Mac, it would live in /tmp -->
53 <!-- if mac -->
54 <available file="/tmp/jre/bin" property="bundled.java.exists"/>
55 <property name="extracted.jre.path" location="/tmp/jre" relative="false" />
56 <!-- /if -->
[30138]57 <!-- if windows|linux -->
[20306]58 <available file="../jre/bin" property="bundled.java.exists"/>
[30131]59 <property name="extracted.jre.path" location="../jre" relative="true" basedir="${basedir}" />
60 <!-- /if -->
[19935]61
62 <!-- target to copy the bundled jre into place -->
[17765]63 <target name="Initialising" if="bundled.java.exists">
[17754]64 <mkdir dir="${installDir}"/>
65 <copy todir="${installDir}/packages/jre" failonerror="false">
[30131]66 <fileset dir="${extracted.jre.path}"/>
[17754]67 </copy>
68 <chmod dir="${installDir}/packages/jre/bin" includes="*" perm="775"/>
[30131]69 <!-- if mac -->
70 <chmod dir="${installDir}/packages/jre/lib" includes="**/*" perm="a+rx"/>
71 <!-- /if -->
[17754]72 </target>
73
[19935]74 <!-- target to load in the messages left by the last installation -->
75 <target name="Looking For Previous Installation" if="is.overinstall">
76 <property file="${installDir}\installation.properties"/>
77 <delete dir="${installed.startmenu.path}" failonerror="false"/>
78 </target>
79
[17764]80 <target name="Installing Core System">
[17754]81
[19935]82 <!-- rip out build.xml to the temp dir so we can fake and <antcall> with <ant> -->
83 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="build.xml"/></patternset></unzip>
[14982]84
85
[19935]86 <!-- if windows -->
87 <echo>Figuring out the start menu path</echo>
88 <getfreepath path="${win32.personal.programs_menu}\Greenstone-@version@" property="startmenu.path"/>
89 <path id="startmenu.path.path" path="${startmenu.path}"/>
90 <pathconvert targetos="unix" property="startmenu.path.unix" refid="startmenu.path.path"/>
91
92 <echo>Extracting 7za tool</echo>
93 <unzip src="${antinstaller.jar}" dest="${basedir}">
94 <patternset><include name="7za.exe"/></patternset>
95 </unzip>
96 <!-- /if -->
97
98 <echo>Extracting core component</echo>
[20190]99 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
100 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x core.lzma"/></exec><!-- /if -->
101 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/><!-- /if -->
102 <delete file="core.lzma"/>
103 <unzip src="${basedir}/core.comp" dest="${installDir}"/>
104 <delete file="core.comp"/>
[19935]105
106 <echo>Setting binaries to executable</echo>
[14982]107 <chmod dir="${installDir}" includes="*.sh" perm="775"/>
108 <chmod dir="${installDir}/bin/script" includes="*" perm="775"/>
[15142]109 <chmod dir="${installDir}/bin" includes="*" perm="775"/>
[29296]110 <chmod dir="${installDir}/ext/solr/bin/script" includes="*" perm="775"/>
[29331]111 <chmod dir="${installDir}/web/WEB-INF/cgi/" includes="*.pl" perm="775"/>
[19935]112 <!-- if linux -->
[14982]113 <chmod dir="${installDir}/gs2build/bin/linux" includes="*" perm="775"/>
[32975]114 <!-- No longer grabbing prebuilt 32 bit wvWare. We now use the one release-kit was already locally building,
115 now that the libpng dependency is resolved. So 64 bit wvWare binary on 64 bit linux and 32 bit on 32 bit linux. -->
116 <!--<chmod dir="${installDir}/gs2build/bin/linux/wv/bin" includes="*" perm="775"/>-->
[32304]117 <chmod dir="${installDir}/gs2build/bin/linux/xpdf-tools/bin" includes="*" perm="775"/>
[29313]118 <chmod dir="${installDir}/bin/linux" includes="*" perm="775"/>
[32382]119 <chmod dir="${installDir}/bin/linux/openssl/bin" includes="*" perm="775"/>
[19935]120 <!-- /if -->
121 <!-- if mac -->
[25956]122 <chmod dir="${installDir}/gs2build/bin/darwin" includes="**/*" excludes="ghostscript/** imagemagick/**" perm="775"/>
[29313]123 <chmod dir="${installDir}/bin/darwin" includes="*" perm="775"/>
[32495]124 <chmod dir="${installDir}/bin/darwin/openssl/bin" includes="*" perm="775"/>
[19935]125 <!-- /if -->
[14982]126 <chmod dir="${installDir}/gs2build/bin/script" includes="**/*" perm="775"/>
[23816]127 <!-- GLI START -->
[14982]128 <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/>
[23816]129 <!-- GLI END -->
130
[25080]131 <chmod file="${installDir}/packages/ant/bin/ant" perm="775"/>
[19964]132 <!--
133 source is not included for now
[19953]134 <chmod dir="${installDir}/gs2build" includes="**/configure" perm="775"/>
135 <chmod dir="${installDir}/gs2build/common-src/packages/gdbm/gdbm-1.8.3" includes="mkinstalldirs" perm="775"/>
[19964]136 <chmod file="${installDir}/src/packages/javagdbm/configure" perm="775"/>
137 -->
[27335]138
[14982]139
[27335]140 <echo>Correcting perl shebangs in perl scripts</echo>
[29335]141 <ant dir="${installDir}" antfile="build.xml" target="set-perl-shebangs" inheritAll="false">
142 <!-- if windows -->
143 <property name="perl.path" value="${installDir}\gs2build\bin\windows\perl\bin\"/>
144 <!-- /if -->
145 </ant>
[27335]146
[27485]147
[26077]148 <echo>Setting tomcat ports</echo>
149 <property name="tomcat.server" value="localhost"/>
150 <property name="tomcat.port" value="8383"/>
151 <property name="tomcat.shutdown.port" value="8305"/>
[21847]152 <rsr file="${installDir}/build.properties">
153 <job pattern="^(tomcat\.server[=:]).*" replacement="$1${tomcat.server}" />
154 <job pattern="^(tomcat\.port[=:]).*" replacement="$1${tomcat.port}" />
155 <job pattern="^(tomcat\.shutdown.port[=:]).*" replacement="$1${tomcat.shutdown.port}" />
156 </rsr>
[14982]157
[17123]158 <echo>Setting up global properties</echo>
[28940]159 <copy file="${installDir}/resources/web/global.properties.in" tofile="${installDir}/web/WEB-INF/classes/global.properties" overwrite="true"/>
[19935]160 <rsr file="${installDir}/web/WEB-INF/classes/global.properties">
[21847]161 <job pattern="^(gsdl3\.home[:=]).*" replacement="$1${installDir.unix}/web" />
162 <job pattern="^(tomcat.server[:=]).*" replacement="$1${tomcat.server}" />
163 <job pattern="^(tomcat\.port[:=]).*" replacement="$1${tomcat.port}" />
[19935]164 </rsr>
[14982]165
[17123]166 <echo>Setting up log4j properties</echo>
[28940]167 <copy file="${installDir}/resources/web/log4j.properties.in" tofile="${installDir}/web/WEB-INF/classes/log4j.properties" overwrite="true"/>
[19955]168 <rsr file="${installDir}/web/WEB-INF/classes/log4j.properties" pattern="@gsdl3home@" replacement="${installDir.unix}/web" />
[14982]169
[19935]170 <!-- if windows -->
171 <echo message="Setting GSDLHOME in gs2build\setup.bat"/>
[21890]172 <!-- No quotes around GSDLHOME filepath in setup.bat. since the set operations of batchfiles don't want spaces in their assignments, and where quotes are needed in setup.bat, setup.bat handles this itself -->
173 <rsr file="${installDir}/gs2build/setup.bat" pattern="&quot;?\*\*GSDLHOME\*\*&quot;?" replacement="${installDir.local}\gs2build" />
[19935]174 <!-- /if -->
175
[29335]176 <!-- if windows|linux -->
177 <echo>Deleting mac shortcuts</echo>
178 <delete dir="${installDir}/gs3-server.app"/>
179 <delete dir="${installDir}/gli.app"/>
180 <delete dir="${installDir}/client-gli.app"/>
181 <delete dir="${installDir}/gems.app"/>
182 <!-- /if -->
183
[27391]184 <!-- if mac -->
[29335]185 <echo>Installing Mac Shortcuts</echo>
[27451]186 <ant dir="${installDir}" antfile="build.xml" target="gen-mac-shortcuts" inheritAll="false" />
187 <!-- need to give executable permissions to the Mac shortcuts -->
[27464]188 <chmod file="${installDir}/gs3-server.app/Contents/MacOS/gs2-server" perm="775"/><!--called gs2-server, since the gs3-server.app is a copy of the one generated for gs2-->
189 <chmod file="${installDir}/gli.app/Contents/MacOS/gli" perm="775"/>
190 <chmod file="${installDir}/client-gli.app/Contents/MacOS/client-gli" perm="775"/>
[29294]191 <chmod file="${installDir}/gems.app/Contents/MacOS/gems" perm="775"/>
192
193 <!--<chmod dir="${installDir}" includes="*.app" perm="755"/>
194 <chmod dir="${installDir}" includes="*.app/**/*" perm="755"/>-->
195
[27391]196 <!-- /if -->
197
[23816]198 <!-- GLI START -->
[18980]199 <echo>Creating the english dictionary</echo>
200 <copy file="${installDir}/gli/classes/dictionary.properties" tofile="${installDir}/gli/classes/dictionary_en.properties"/>
[23816]201 <!-- GLI END -->
[18980]202
[19935]203 <echo>Creating usage.txt</echo>
[17814]204 <echo file="${installDir}/gs2build/etc/usage.txt"></echo>
205
[17257]206 <echo>Creating installation properties file</echo>
[19935]207 <echo file="${installDir}\installation.properties">installed.startmenu.path:${startmenu.path.unix}</echo>
[17257]208
[17123]209 <echo>Finished</echo>
[15142]210
[14982]211 </target>
212
[29335]213 <!-- Dummy target to redirect display of subtargets resulting from ant calls to the gen-mac-shortcuts
214 and set-perl-shebangs to this dummy target instead of to the Installing ImageMagick target below -->
215 <target name="Adjusting Permissions" />
216
[17646]217 <target name="Installing ImageMagick">
[19935]218
[17646]219 <echo>Installing ImageMagick</echo>
[20190]220 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
221 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x imagemagick.lzma"/></exec><!-- /if -->
222 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/><!-- /if -->
223 <delete file="imagemagick.lzma"/>
224 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}"/>
225 <delete file="imagemagick.comp"/>
[19935]226
227 <echo>Setting binaries to executable</echo>
228 <!-- if linux -->
[17699]229 <chmod dir="${installDir}/gs2build/bin/linux/imagemagick/bin" includes="*" perm="775"/>
[19935]230 <!-- /if -->
231 <!-- if mac -->
232 <chmod dir="${installDir}/gs2build/bin/darwin/imagemagick/bin" includes="*" perm="775"/>
233 <!-- /if -->
234
[14982]235 </target>
236
[23843]237 <!-- NO FLAX START -->
238
[19935]239 <target name="Installing Ghostscript">
[17646]240
[19935]241 <echo>Installing Ghostscript</echo>
[20190]242 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
243 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ghostscript.lzma"/></exec><!-- /if -->
244 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/><!-- /if -->
245 <delete file="ghostscript.lzma"/>
246 <unzip src="${basedir}/ghostscript.comp" dest="${installDir}"/>
247 <delete file="ghostscript.comp"/>
[19935]248
249 <echo>Setting binaries to executable</echo>
250 <!-- if linux -->
251 <chmod dir="${installDir}/gs2build/bin/linux/ghostscript/bin" includes="*" perm="775"/>
252 <!-- /if -->
253 <!-- if mac -->
254 <chmod dir="${installDir}/gs2build/bin/darwin/ghostscript/bin" includes="*" perm="775"/>
255 <!-- /if -->
256
257 </target>
258
[23843]259 <!-- NO FLAX END -->
260
[22325]261 <!-- start amp -->
262
263 <target name="Installing AMP">
264 <echo>Installing Apache, MySQL and PHP</echo>
265 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="amp.lzma"/></patternset></unzip>
266 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x amp.lzma"/></exec><!-- /if -->
267 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/amp.lzma" output="${basedir}/amp.comp"/><!-- /if -->
268 <delete file="amp.lzma"/>
269 <unzip src="${basedir}/amp.comp" dest="${installDir}/ext/amp"/>
270 <delete file="amp.comp"/>
271
272 <!-- if linux|mac -->
273 <echo>Setting binaries to executable</echo>
274 <chmod dir="${installDir}/ext/amp" includes="*" perm="775"/>
275 <!-- /if -->
276 </target>
277
278 <!-- end amp -->
279
[17596]280 <target name="Installing Tomcat">
[19935]281
[17123]282 <echo>Installing Tomcat (packages/tomcat)</echo>
[17446]283 <mkdir dir="packages"/>
[20190]284 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="tomcat.lzma"/></patternset></unzip>
285 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x tomcat.lzma"/></exec><!-- /if -->
286 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/tomcat.lzma" output="${basedir}/tomcat.comp"/><!-- /if -->
287 <delete file="tomcat.lzma"/>
288 <unzip src="${basedir}/tomcat.comp" dest="${installDir}"/>
289 <delete file="tomcat.comp"/>
[17446]290
[20190]291
[17123]292 <echo>Changing tomcat ports tomcat's server.xml</echo>
[32741]293 <copy file="${installDir}/resources/tomcat/server_tomcat8.xml.in" tofile="${installDir}/packages/tomcat/conf/server.xml" overwrite="true"/>
[19935]294 <rsr file="${installDir}/packages/tomcat/conf/server.xml">
295 <job pattern="@port@" replacement="${tomcat.port}"/>
296 <job pattern="@shutdown-port@" replacement="${tomcat.shutdown.port}"/>
297 </rsr>
298
[17123]299 <echo>Copying greenstone3.xml to tomcat directory</echo>
[32328]300 <copy file="${installDir}/resources/tomcat/greenstone3.xml.in" tofile="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" overwrite="true"/>
[19962]301 <rsr file="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" pattern="@gsdl3webhome@" replacement="${installDir.local}${file.separator}web" />
[23667]302 <rsr file="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" pattern="@privilegedattribute@" replacement="privileged='true'" />
[26076]303
304 <!-- FLAX START -->
305 <rsr file="${installDir}/packages/tomcat/conf/Catalina/localhost/greenstone3.xml" pattern="localsite" replacement="flax" />
306 <!-- FLAX END -->
307
[19935]308 <echo>Set binaries to executable</echo>
[15973]309 <chmod dir="${installDir}/packages/tomcat/bin" includes="*.sh" perm="775"/>
[19935]310
[15142]311 </target>
[15205]312
[19935]313 <target name="Installing Start Menu Shortcuts">
[17786]314
[19935]315 <echo>Installing Start Menu Shortcuts</echo>
[17814]316
[23937]317 <!-- NO FLAX START -->
318
[19935]319 <mkdir dir="${startmenu.path}\Documentation"/>
[23811]320
[19935]321 <shortcut
322 file="${startmenu.path}\Greenstone3 Server.lnk"
323 execute="${installDir}\gs3-server.bat"
324 workingDirectory="${installDir}"
[21819]325 iconFile="${installDir}\resources\images\server.ico"
[19935]326 iconIndex="0" />
[17786]327
[19935]328 <shortcut
329 file="${startmenu.path}\Greenstone Librarian Interface (GLI).lnk"
330 execute="${installDir}\gli\gli.bat"
331 workingDirectory="${installDir}\gli"
[21819]332 iconFile="${installDir}\resources\images\librarian.ico"
[19935]333 iconIndex="0" />
[29335]334
335 <shortcut
336 file="${startmenu.path}\Remote Greenstone Librarian Interface (Client GLI).lnk"
337 execute="${installDir}\gli\client-gli.bat"
338 workingDirectory="${installDir}\gli"
339 iconFile="${installDir}\resources\images\clientgli.ico"
340 iconIndex="0" />
[19935]341
342 <shortcut
343 file="${startmenu.path}\Greenstone Editor for Metadata Sets (GEMS).lnk"
344 execute="${installDir}\gli\gems.bat"
345 workingDirectory="${installDir}\gli"
[21819]346 iconFile="${installDir}\resources\images\metadata.ico"
[19935]347 iconIndex="0" />
[17786]348
[19935]349 <shortcut
350 file="${startmenu.path}\Uninstall.lnk"
[23836]351 execute="${installDir}\uninstall\Uninstall.bat"
[19935]352 workingDirectory="${installDir}"
[20012]353 iconFile="${installDir}\resources\images\uninstall.ico"
[19935]354 iconIndex="0" />
355
356 <shortcut
357 file="${startmenu.path}\Documentation\README.lnk"
358 execute="${installDir}\README.txt" />
359
360 <shortcut
361 file="${startmenu.path}\Documentation\Greenstone3 Users' Guide.lnk"
362 execute="${installDir}\documentation\manual\manual.pdf" />
363
364 <shortcut
365 file="${startmenu.path}\Documentation\Greenstone2 Users' Guide.lnk"
366 execute="${installDir}\documentation\manual\gs2_user_en.pdf" />
[20012]367
368 <shortcut
369 file="${startmenu.path}\Documentation\Greenstone Wiki.url"
370 url="http://wiki.greenstone.org" />
371
372 <shortcut
373 file="${startmenu.path}\Documentation\Greenstone Website.url"
374 url="http://www.greenstone.org" />
[19935]375
[23811]376 <!-- NO FLAX END -->
377
[24091]378 <!-- FLAX START -->
[23811]379
380 <shortcut
381 file="${startmenu.path}\Start FLAX Server.lnk"
382 execute="${installDir}\gs3-server.bat"
383 workingDirectory="${installDir}"
384 iconFile="${installDir}\resources\images\server.ico"
385 iconIndex="0" />
386
387 <shortcut
388 file="${startmenu.path}\Uninstall.lnk"
[23836]389 execute="${installDir}\uninstall\Uninstall.bat"
[23811]390 workingDirectory="${installDir}"
391 iconFile="${installDir}\resources\images\uninstall.ico"
392 iconIndex="0" />
393
394 <!-- FLAX END -->
[19935]395 </target>
[24437]396
[29285]397 <target name="Configuring Administration Pages" if="set.admin.pwd">
[24437]398 <echo>Enabling Admin Pages</echo>
399 <rsr file="${installDir}/web/sites/localsite/siteConfig.xml" pattern="&lt;!--&lt;serviceRack name='Authentication'/&gt;--&gt;" replacement="&lt;serviceRack name='Authentication'/&gt;"/>
[25329]400 <echo>Creating admin user</echo>
401 <!--<echo>Creating admin and demo users</echo>-->
[25611]402 <ant dir="${installDir}" antfile="build.xml" target="config-admin" inheritAll="false">
403 <property name="admin.password" value="${admin.password}"/>
404 </ant>
[25329]405 <!--<adduser txt2db="org.greenstone.gsdl3.util.ChangePwdUsersDB"
406 usersDb="${installDir}/web/sites/localsite/etc/usersDB"
[24437]407 username="admin"
408 password="${admin.password}"
409 groups="administrator,colbuilder,all-collections-editor"
[25329]410 comment="created at install time"
411 email=""/>
[24437]412 <adduser
[25329]413 txt2db="org.greenstone.gsdl3.util.ChangePwdUsersDB"
414 usersDb="${installDir}/web/sites/localsite/etc/usersDB"
[24437]415 username="demo"
416 password="demo"
417 groups="demo"
[25329]418 comment="Dummy 'demo' user with password 'demo' for authen-e collection"
419 email=""/>-->
[24437]420 </target>
421
[19935]422 <!-- util target to extract the given component -->
423 <!-- pass in ${component.name} as a param -->
[20190]424 <!-- unused at this time as causes display errors in installer gui!
[19935]425 <target name="extract-component">
[20190]426 <!- - extract the component into place - ->
[19935]427 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="${component.name}.lzma"/></patternset></unzip>
[20190]428 <!- - if windows - ->
[19935]429 <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ${component.name}.lzma"/></exec>
[20190]430 <!- - /if - ->
431 <!- - if linux|mac - ->
[19935]432 <sevenzip task="decode" input="${basedir}/${component.name}.lzma" output="${basedir}/${component.name}.comp"/>
[20190]433 <!- - /if - ->
[19935]434 <delete file="${component.name}.lzma"/>
435 <unzip src="${basedir}/${component.name}.comp" dest="${installDir}"/>
436 <delete file="${component.name}.comp"/>
[17786]437 </target>
[20190]438 -->
[17786]439
[14982]440</project>
Note: See TracBrowser for help on using the repository browser.