Changeset 20112 for release-kits/lirk3


Ignore:
Timestamp:
2009-08-03T11:49:27+12:00 (15 years ago)
Author:
oranfry
Message:

more generalisation, and wrok on mark3

Location:
release-kits/lirk3/ant-scripts
Files:
3 edited

Legend:

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

    r19953 r20112  
    11<?xml version="1.0" encoding="utf-8" ?>
    22<project name="lirk3-compile" default="compile">
    3 
    4     <target name="compile">
    5         <antcall target="checkout-greenstone3" />
    6         <antcall target="greenstone3-set-version-numbers"><param name="greenstone3basedir" value="compiled"/></antcall>
    7         <ant dir="compiled" inheritAll="false">
    8             <target name="prepare"/>
    9             <propertyset refid="forward.properties"/>
    10         </ant>
    11         <antcall target="gli-set-version-numbers"><param name="glibasedir" value="compiled/gli" /></antcall>
    12         <ant dir="compiled" inheritAll="false">
    13             <target name="install"/>
    14                         <!-- we are temporarily leaving in src code -->
    15                         <target name="distclean"/>
    16             <target name="dist-tidy"/>
    17             <propertyset refid="forward.properties"/>
    18         </ant>
    19         <antcall target="insert-xml-parser"/>
    20         <antcall target="insert-ant"/>
    21         <antcall target="insert-documented-examples"/>
    22         <antcall target="insert-imagemagick-linux-binaries"/>
    23         <antcall target="compile-uninstaller" /> <!-- from rk3-targets -->
    24         <antcall target="prepare-documentation"/> <!-- from rk3-targets -->
    25     </target>
    26 
    27     <target name="insert-imagemagick-linux-binaries">
    28         <delete dir="compiled/bin/linux/imagemagick"/>
    29         <svn>
    30             <export srcurl="${svn.root}/other-projects/trunk/linux-binaries/imagemagick" destPath="compiled/gs2build/bin/linux/imagemagick"/>
    31         </svn>
    32     </target>
    33 
     3    <target name="compile" depends="greenstone3-compile"/>
    344</project>
  • release-kits/lirk3/ant-scripts/create-components.xml

    r20060 r20112  
    1919
    2020    <target name="compress-components">
    21                 <antcall target="compress-component"><param name="component" value="core"/></antcall>
    22                 <antcall target="compress-component"><param name="component" value="tomcat"/></antcall>
    23                 <antcall target="compress-component"><param name="component" value="imagemagick"/></antcall>
    24     </target>
     21        <antcall target="compress-component"><param name="component" value="core"/></antcall>
     22        <antcall target="compress-component"><param name="component" value="tomcat"/></antcall>
     23        <antcall target="compress-component"><param name="component" value="imagemagick"/></antcall>
     24    </target>
    2525
    2626</project>
  • release-kits/lirk3/ant-scripts/create-distribution.xml

    r19936 r20112  
    11<?xml version="1.0" encoding="utf-8" ?>
    22<project name="lirk3-create-distribution" default="create-distribution">
    3 
    4     <target name="create-distribution">
    5         <!-- create distribution -->
    6         <antcall target="copy-compiled-to-dist"/> <!-- from init -->
    7         <antcall target="insert-uninstaller"><param name="script-format" value="sh"/></antcall> <!-- from init -->
    8         <antcall target="clean-user-manual"/>
    9         <antcall target="clean-uninstaller"/>
    10         <antcall target="strip-svn-dirs"><param name="dir" value="distributions"/></antcall> <!-- from init -->
    11     </target>
    12 
     3    <target name="create-distribution" depends="greenstone3-create-distribution"/>
    134</project>
Note: See TracChangeset for help on using the changeset viewer.