Ignore:
Timestamp:
2008-10-24T10:59:47+13:00 (16 years ago)
Author:
oranfry
Message:

changes to exclude sourcecode from the binary release, use nicer target names and icons

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/lirk3/ant-scripts/create-installer.xml

    r17538 r17596  
    55        <antcall target="copy-installer-files"/>
    66        <antcall target="make-installer-files-concrete"><param name="java.os" value="linux"/></antcall> <!-- from rk3-targets -->
    7         <antcall target="compile-installer"/>
     7        <antcall target="compile-binary-installer"/> <!-- from init -->
     8        <antcall target="compile-minimal-installer"/> <!-- from init -->
     9        <antcall target="compile-source-installer"/> <!-- from init -->
     10
    811    </target>
    912
    1013    <target name="copy-installer-files">
    11         <echo>Getting things ready to compile the installer</echo>
     14
    1215        <mkdir dir="${basedir}/installer/resources"/>
    1316        <copy todir="${basedir}/installer" file="${lirk3.home}/installer/antinstall-config.xml" overwrite="true" />
     
    2629    </target>
    2730
    28     <target name="compile-installer">
    29 
    30         <installer file="${basedir}/installer/greenstone3.jar"
    31                 compress="true"
    32                 extractType="NonExtractor"
    33                 installConfig="${basedir}/installer/antinstall-config.xml"
    34                 buildFile="${basedir}/installer/build.xml"
    35                 antInstallLib="${lirk3.home}/packages/ant-installer/lib"
    36                 antLib="${lirk3.home}/packages/ant/lib"
    37                 validateConfig="true"
    38                 icons="bluecurve">
    39 
    40             <zipfileset dir="${basedir}/installer/classes" includes="**/*"/>
    41             <zipfileset dir="${basedir}/components" includes="*.lzma"/>
    42         </installer>
    43 
    44         <dcff
    45             file="${basedir}/installer/antinstall-config.xml"
    46             startTag=".*&lt;!-- start full --&gt;"
    47             endTag=".*&lt;!-- end full --&gt;"/>
    48 
    49         <installer file="${basedir}/installer/Greenstone-${version}-linux-minimal.jar"
    50                 compress="true"
    51                 extractType="NonExtractor"
    52                 installConfig="${basedir}/installer/antinstall-config.xml"
    53                 buildFile="${basedir}/installer/build.xml"
    54                 antInstallLib="${lirk3.home}/packages/ant-installer/lib"
    55                 antLib="${lirk3.home}/packages/ant/lib"
    56                 validateConfig="true"
    57                 icons="bluecurve">
    58 
    59             <zipfileset dir="${basedir}/installer/classes" includes="**/*"/>
    60             <zipfileset dir="${basedir}/components" includes="core.lzma"/>
    61         </installer>
    62 
    63 
    64     </target>
    65 
    6631</project>
Note: See TracChangeset for help on using the changeset viewer.