source: release-kits/rk2/ant-scripts/create-distribution.xml@ 20721

Last change on this file since 20721 was 20721, checked in by oranfry, 15 years ago

created the merged rk2

File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="rk2-create-distribution">
3
4 <target name="create-distribution">
5
6 <antcall target="copy-compiled-to-dist"/>
7 <antcall target="dist-clean-sourcecode"/>
8 <antcall target="insert-uninstaller"></antcall>
9 <antcall target="strip-svn-dirs"><param name="dir" value="${basedir}/distributions/web"/></antcall>
10
11 <!-- windows -->
12 <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
13
14 <antcall target="copy-server"/>
15 <antcall target="remove-unneeded-files" />
16
17 <antcall target="create-needed-empty-files"><param name="gsdl.basedir" value="distributions/web"/></antcall>
18 <antcall target="create-binary-zip-windows"/>
19
20 <!-- linux -->
21 <else><if><bool><equals arg1="${rk.os}" arg2="linux"/></bool>
22
23 <antcall target="insert-export-to-cd-package"><param name="gsdl.basedir" value="distributions/web"/></antcall> <!-- from rk2-targets -->
24 <antcall target="export-imagemagick-linux-binaries"/>
25 <antcall target="export-wvware-linux-binaries"/>
26 <antcall target="remove-unneeded-files" />
27 <antcall target="create-needed-empty-files"><param name="gsdl.basedir" value="distributions/web"/></antcall>
28
29 <!-- mac -->
30 <else><if><bool><equals arg1="${rk.os}" arg2="mac"/></bool>
31 <antcall target="insert-export-to-cd-package"><param name="gsdl.basedir" value="distributions/web"/></antcall> <!-- from rk2-targets -->
32
33 <antcall target="export-imagemagick-darwin-binaries" />
34 <antcall target="export-ghostscript-darwin-binaries" />
35 <antcall target="remove-unneeded-files"/>
36 <antcall target="create-needed-empty-files"><param name="gsdl.basedir" value="distributions/web"/></antcall>
37
38 </if></else></if></else></if>
39
40 </target>
41
42</project>
Note: See TracBrowser for help on using the repository browser.