Changeset 17257 for release-kits/lirk3


Ignore:
Timestamp:
2008-09-11T16:58:26+12:00 (16 years ago)
Author:
oranfry
Message:

added the uninstaller to all release kits

Location:
release-kits/lirk3
Files:
4 edited

Legend:

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

    r17243 r17257  
    2626
    2727        <!-- uninstaller -->
    28         <antcall target="compile-uninstaller" />
     28        <antcall target="compile-uninstaller" /> <!-- from global-targets -->
    2929
    3030        <!-- documentation -->
  • release-kits/lirk3/ant-scripts/create-distribution.xml

    r17243 r17257  
    2929        <antcall target="insert-user-manual"/>
    3030        <antcall target="insert-compiled-binaries"/>
    31         <antcall target="insert-uninstaller"/>
     31        <antcall target="insert-uninstaller"/> <!-- from rk3-targets -->
    3232        <antcall target="rename-build-xml-for-transit"/>
    3333    </target>
  • release-kits/lirk3/ant-scripts/create-installer.xml

    r17107 r17257  
    2121
    2222    <target name="compile-installer">
     23
    2324        <installer file="${basedir}/installer/greenstone3-with-java.jar"
    2425                compress="true"
     
    2930                antLib="${lirk3.home}/packages/ant/lib"
    3031                validateConfig="true"
    31                 failOnError="false"
    3232                icons="bluecurve">
    3333
    34             <!-- copy all the important files into the archive to be extracted for install -->
    3534            <zipfileset dir="${basedir}/installer/classes" includes="**/*" /> <!-- installer classes -->
    3635            <zipfileset dir="${basedir}/distribution/greenstone3" includes="**/*"/>
     
    5453            <zipfileset dir="${basedir}/distribution/greenstone3" includes="**/*"/>
    5554        </installer>
     55
    5656    </target>
    5757
  • release-kits/lirk3/installer/build.xml

    r17244 r17257  
    1919
    2020        <!-- create the installation directory -->
    21         <echo message="Creating Installation directory"/>
     21        <echo>Creating Installation directory</echo>
    2222        <echo>basedir: ${basedir}</echo>
    2323        <echo>installDir: ${installDir}</echo>
     
    8383        <delete file="${installDir}/resources/*.png"/>
    8484
     85        <echo>Creating installation properties file</echo>
     86        <echo file="${installDir}/installation.properties">#this file is just a placeholder for now</echo>
     87
    8588        <echo>Finished</echo>
    8689
     
    9093    <target name="install-source-code" depends="">
    9194
    92         <echo>Installing Source Code<echo>
     95        <echo>Installing Source Code</echo>
    9396        <mkdir dir="${installDir}/src"/>
    9497        <unzip src="${antinstaller.jar}" dest="${installDir}">
Note: See TracChangeset for help on using the changeset viewer.