Ignore:
Timestamp:
2010-06-30T10:24:48+12:00 (14 years ago)
Author:
sjm84
Message:

Several upgrades to the release kits have been made including: optional Apache and the ability to create installers with extensions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/release-kits/kits/rk3/installer/build.xml

    r21890 r22325  
    175175
    176176    </target>
     177
     178    <!-- start amp -->
     179
     180    <target name="Installing AMP">
     181      <echo>Installing Apache, MySQL and PHP</echo>
     182      <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="amp.lzma"/></patternset></unzip>
     183      <!-- if windows --><exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x amp.lzma"/></exec><!-- /if -->
     184      <!-- if linux|mac --><sevenzip task="decode" input="${basedir}/amp.lzma" output="${basedir}/amp.comp"/><!-- /if -->
     185      <delete file="amp.lzma"/>
     186      <unzip src="${basedir}/amp.comp" dest="${installDir}/ext/amp"/>
     187      <delete file="amp.comp"/>
     188     
     189      <!-- if linux|mac -->
     190      <echo>Setting binaries to executable</echo>
     191      <chmod dir="${installDir}/ext/amp" includes="*" perm="775"/>
     192      <!-- /if -->
     193    </target>
     194
     195    <!-- end amp -->
    177196
    178197    <target name="Installing Tomcat">
Note: See TracChangeset for help on using the changeset viewer.