Changeset 17597 for release-kits/mark2


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

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

Location:
release-kits/mark2
Files:
4 edited

Legend:

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

    r17453 r17597  
    99
    1010<project name="mark2-build" default="mark2">
    11 
    1211
    1312    <!-- CONSTANTS -->
     
    4544    </target>
    4645
     46    <property name="os.suffix" value="MacOS-${processor}"/>
     47
    4748    <!-- THE MAIN TARGET -->
    4849    <target name="mark2" depends="init,mark2-init">
  • 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>
  • release-kits/mark2/installer/antinstall-config.xml

    r17576 r17597  
    5252            displayText=""/>
    5353
     54        <!-- start sourcecode -->
    5455        <target
    5556            target="Installing Source Code"
     
    5758            defaultValue="false"
    5859            displayText=""/>
     60        <!-- end sourcecode -->
    5961
    6062    </page>
     
    6567    </page>
    6668
    67     <page type="progress" name="progress" showTargets="false" displayText=""></page>
     69    <page type="progress" name="progress" showTargets="true" displayText=""/>
    6870
    6971</installer>
  • release-kits/mark2/installer/build.xml

    r17576 r17597  
    3434
    3535        <!-- install files -->
    36         <echo message="Installing Core Files"/>
     36        <echo message="Installing Core System"/>
    3737        <unzip src="${antinstaller.jar}" dest="${installDir}">
    3838            <patternset>
Note: See TracChangeset for help on using the changeset viewer.