Ignore:
Timestamp:
2008-10-24T11:00:08+13:00 (15 years ago)
Author:
oranfry
Message:

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

File:
1 edited

Legend:

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

    r17453 r17597  
    55        <antcall target="copy-installer-files"/>
    66        <antcall target="make-installer-files-concrete"/> <!-- from rk2-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 -->
    810    </target>
    911
    1012    <target name="copy-installer-files">
    11         <echo>Copying installer files</echo>
    1213        <mkdir dir="${basedir}/installer/classes"/>
    1314        <copy todir="${basedir}/installer" file="${mark2.home}/installer/antinstall-config.xml" overwrite="true"/>
     
    2627    </target>
    2728
    28     <target name="compile-installer">
    29         <installer file="${basedir}/installer/Greenstone-${version}-MacOS-${processor}.jar"
    30                 compress="true"
    31                 extractType="NonExtractor"
    32                 installConfig="${basedir}/installer/antinstall-config.xml"
    33                 buildFile="${basedir}/installer/build.xml"
    34                 antInstallLib="${mark2.home}/packages/ant-installer/lib"
    35                 antLib="${mark2.home}/packages/ant/lib"
    36                 validateConfig="true"
    37                 failOnError="false"
    38                 icons="bluecurve">
    39 
    40             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    41             <zipfileset dir="${basedir}/components" includes="*.lzma"/>
    42         </installer>
    43 
    44         <installer file="${basedir}/installer/Greenstone-${version}-MacOS-${processor}-minimal.jar"
    45                 compress="true"
    46                 extractType="NonExtractor"
    47                 installConfig="${basedir}/installer/antinstall-config.xml"
    48                 buildFile="${basedir}/installer/build.xml"
    49                 antInstallLib="${mark2.home}/packages/ant-installer/lib"
    50                 antLib="${mark2.home}/packages/ant/lib"
    51                 validateConfig="true"
    52                 failOnError="false"
    53                 icons="bluecurve">
    54 
    55             <zipfileset dir="${basedir}/installer/classes" includes="**/*" />
    56             <zipfileset dir="${basedir}/components" includes="core.lzma"/>
    57         </installer>
    58 
    59     </target>
    60 
    6129</project>
Note: See TracChangeset for help on using the changeset viewer.