source: release-kits/mark3/ant-scripts/create-distribution.xml@ 17652

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

started source releases

File size: 3.5 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="mark3-create-distribution" default="create-distribution">
3
4 <target name="create-distribution">
5
6 <!-- create distribution -->
7 <antcall target="export-greenstone3-gli" />
8 <antcall target="greenstone3-set-version-numbers"><param name="greenstone3basedir" value="${basedir}/distribution/greenstone3"/></antcall>
9 <antcall target="gli-set-version-numbers"><param name="glibasedir" value="${basedir}/distribution/greenstone3/gli"/></antcall>
10 <antcall target="insert-user-manual"/>
11
12 <antcall target="copy-web-to-source-greenstone3" /> <!-- from gs3-targets -->
13
14 <ant target="create-distribution-1" antfile="${mark3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" inheritAll="false">
15 <property name="app.version" value="${version}"/>
16 <property name="branch.path" value="${branch.path}"/>
17 </ant>
18
19 <ant target="create-distribution-2" antfile="${mark3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" inheritAll="false">
20 <property name="app.version" value="${version}"/>
21 <property name="branch.path" value="${branch.path}"/>
22 </ant>
23
24 <ant target="create-distribution-3" antfile="${mark3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" inheritAll="false">
25 <property name="app.version" value="${version}"/>
26 <property name="branch.path" value="${branch.path}"/>
27 </ant>
28
29 <antcall target="copy-over-build-xml" />
30 <antcall target="insert-compiled-binaries"/>
31 <antcall target="insert-uninstaller"><param name="script-format" value="sh"/></antcall> <!-- from rk3-targets -->
32 <antcall target="strip-svn-dirs"><param name="dir" value="distribution"/></antcall> <!-- from init -->
33 </target>
34
35 <target name="export-greenstone3-gli">
36 <mkdir dir="distribution"/>
37 <delete dir="distribution/greenstone3"/>
38 <svn javahl="false">
39 <export srcurl="${svn.root}/greenstone3/${branch.path}" destPath="distribution/greenstone3"/>
40 <export srcurl="${svn.root}/gli/${branch.path}" destPath="distribution/greenstone3/gli"/>
41 </svn>
42 <copy todir="distribution/source"><fileset dir="distribution/greenstone3"/></copy>
43 </target>
44
45 <target name="dist-set-version-number-property">
46 <rsr
47 file="distribution/greenstone3/resources/java/global.properties.in"
48 pattern="(.*)@gsdl3version@(.*)"
49 replacement="$1${version}$2" />
50 </target>
51
52 <target name="copy-over-build-xml">
53 <move file="distribution/greenstone3/modified-build.xml" tofile="distribution/greenstone3/build.xml"/>
54 </target>
55
56 <target name="insert-user-manual">
57 <copy file="greenstone3/gsdl-manuals/manuals/build/en/pdf/User_en.pdf" tofile="distribution/greenstone3/docs/manual/gs2_user_en.pdf"/>
58 </target>
59
60 <target name="insert-compiled-binaries">
61 <delete dir="distribution/greenstone3/lib/jni"/>
62 <exec executable="cp"><arg line="-r greenstone3/lib/jni distribution/greenstone3/lib"/></exec>
63
64 <delete dir="distribution/greenstone3/gs2build/bin/darwin"/>
65 <exec executable="cp"><arg line="-r greenstone3/gs2build/bin/darwin distribution/greenstone3/gs2build/bin"/></exec>
66
67 <delete dir="distribution/greenstone3/gs2build/bin/java"/>
68 <exec executable="cp"><arg line="-r greenstone3/gs2build/bin/java distribution/greenstone3/gs2build/bin"/></exec>
69 <exec executable="cp"><arg line="greenstone3/bin/search4j distribution/greenstone3/bin"/></exec>
70 </target>
71
72 <target name="rename-build-xml-for-transit">
73 <move file="distribution/greenstone3/build.xml" tofile="distribution/greenstone3/greenstone3-build.xml"/>
74 </target>
75
76
77</project>
Note: See TracBrowser for help on using the repository browser.