Ignore:
Timestamp:
2009-05-18T15:36:40+12:00 (15 years ago)
Author:
oranfry
Message:

main release kits now create their own cdrom installers and wrap them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/wirk2/installer/build.xml

    r19379 r19510  
    5757        <!-- install files -->
    5858        <echo message="Installing Core Component"/>
     59
     60        <!-- start web -->
    5961        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="core.lzma"/></patternset></unzip>
    6062        <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"/>-->
    6263        <delete file="core.lzma"/>
    6364        <unzip src="${basedir}/core.comp" dest="${installDir}"/>
    6465        <delete file="core.comp"/>
     66        <!-- end web -->
     67
     68        <!-- start cdrom -->
     69        <copy todir="${installDir}">
     70            <fileset dir="${orig.dir}/Software/core/all"/>
     71            <fileset dir="${orig.dir}/Software/core/windows"/>
     72        </copy>
     73        <!-- end cdrom -->
    6574
    6675        <!-- jre -->
     
    8796    <target name="Installing ImageMagick">
    8897        <echo message="Installing ImageMagick"/>
     98        <!-- start web -->
    8999        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
    90100        <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x imagemagick.lzma"/></exec>
    91         <!--<sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/>-->
    92101        <delete file="imagemagick.lzma"/>
    93102        <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/bin/windows"/>
    94103        <delete file="imagemagick.comp"/>
     104        <!-- end web -->
     105
     106        <!-- start cdrom -->
     107        <copy todir="${installDir}/bin/windows">
     108            <fileset dir="${orig.dir}/Software/imagemagick/windows"/>
     109        </copy>
     110        <!-- end cdrom -->
     111
    95112    </target>
    96113
    97114    <target name="Installing Ghostscript">
    98115        <echo message="Installing GhostScript"/>
     116        <!-- start web -->
    99117        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
    100118        <exec dir="${basedir}" executable="${basedir}/7za.exe"><arg line="x ghostscript.lzma"/></exec>
    101         <!--<sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/>-->
    102119        <delete file="ghostscript.lzma"/>
    103120        <unzip src="${basedir}/ghostscript.comp" dest="${installDir}/bin/windows"/>
    104121        <delete file="ghostscript.comp"/>
     122        <!-- end web -->
     123
     124        <!-- start cdrom -->
     125        <copy todir="${installDir}/bin/windows">
     126            <fileset dir="${orig.dir}/Software/ghostscript/windows"/>
     127        </copy>
     128        <!-- end cdrom -->
     129
    105130    </target>
    106131   
Note: See TracChangeset for help on using the changeset viewer.