Changeset 20056
- Timestamp:
- 2009-07-21T16:59:28+12:00 (14 years ago)
- Location:
- release-kits/shared/greenstone2/installer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
release-kits/shared/greenstone2/installer/antinstall-config.xml
r20042 r20056 126 126 </page> 127 127 128 <!-- if they said yes above, set a password -->128 <!-- only if they said yes above, set a password --> 129 129 <page type="input" name="admin-password" displayText="" ifProperty="(${enable.admin.pages}==true)" target="Configuring Administration Pages"> 130 130 <comment name="admin-password-expl"/> -
release-kits/shared/greenstone2/installer/build.xml
r20042 r20056 35 35 <taskdef name="winprops" classname="com.orangevolt.tools.ant.Win32PropertiesTask" classpathref="project.classpath"/> 36 36 <typedef name="getfreepath" classname="org.greenstone.anttasks.GetFreePath" classpathref="project.classpath"/> 37 <taskdef name="sevenzip" classname="org.greenstone.anttasks.WindowsSevenZipWrapper" classpathref="project.classpath"/>38 37 <!-- /if --> 39 38 <!-- if linux|mac --> … … 90 89 <!-- start web --> 91 90 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip> 92 <sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/> 91 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/core.lzma" output="${basedir}/core.comp"/><!-- /if --> 92 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x core.lzma"/></exec><!-- /if --> 93 93 <delete file="core.lzma"/> 94 94 <unzip src="${basedir}/core.comp" dest="${installDir}"/> … … 173 173 <!-- start web --> 174 174 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip> 175 <sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/> 175 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/><!-- /if --> 176 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x imagemagick.lzma"/></exec><!-- /if --> 176 177 <delete file="imagemagick.lzma"/> 177 178 <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/bin/${shell.name}"/> … … 194 195 <!-- start web --> 195 196 <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip> 196 <sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/> 197 <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/><!-- /if --> 198 <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ghostscript.lzma"/></exec><!-- /if --> 197 199 <delete file="ghostscript.lzma"/> 198 200 <unzip src="${basedir}/ghostscript.comp" dest="${installDir}/bin/${shell.name}" />
Note:
See TracChangeset
for help on using the changeset viewer.