source: release-kits/wirk3/ant-scripts/create-distribution.xml@ 17833

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

make sure uninstaller makes it into source releases

File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="wirk3-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 <antcall target="insert-uninstaller"><param name="script-format" value="bat"/></antcall> <!-- from rk3-targets -->
12
13 <antcall target="copy-web-to-source-greenstone3" /> <!-- from gs3-targets -->
14
15 <ant target="create-distribution-1" antfile="${wirk3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" inheritAll="false">
16 <property name="app.version" value="${version}"/>
17 <property name="branch.path" value="${branch.path}"/>
18 <property name="branch.revision" value="${branch.revision}"/>
19 </ant>
20
21 <antcall target="insert-icon"/>
22
23 <ant target="create-distribution-2" antfile="${wirk3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" inheritAll="false">
24 <property name="app.version" value="${version}"/>
25 <property name="branch.path" value="${branch.path}"/>
26 <property name="branch.revision" value="${branch.revision}"/>
27 </ant>
28 <ant target="create-distribution-3" antfile="${wirk3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" inheritAll="false">
29 <property name="app.version" value="${version}"/>
30 <property name="branch.path" value="${branch.path}"/>
31 <property name="branch.revision" value="${branch.revision}"/>
32 </ant>
33 <antcall target="copy-over-build-xml" />
34 <antcall target="insert-compiled-binaries"/>
35
36 </target>
37
38 <target name="export-greenstone3-gli">
39 <mkdir dir="distribution"/>
40 <delete dir="distribution/greenstone3"/>
41 <svn>
42 <export srcurl="${svn.root}/greenstone3/${branch.path}" destPath="distribution/greenstone3" revision="${branch.revision}"/>
43 <export srcurl="${svn.root}/gli/${branch.path}" destPath="distribution/greenstone3/gli" revision="${branch.revision}"/>
44 </svn>
45 </target>
46
47 <target name="copy-over-build-xml">
48 <if><bool><istrue value="${execute}"/></bool>
49 <move file="distribution/greenstone3/modified-build.xml" tofile="distribution/greenstone3/build.xml"/>
50 </if>
51 </target>
52
53 <target name="insert-user-manual">
54 <copy file="greenstone3/gsdl-manuals/manuals/build/en/pdf/User_en.pdf" tofile="distribution/greenstone3/docs/manual/gs2_user_en.pdf"/>
55 </target>
56
57 <target name="insert-compiled-binaries">
58
59 <delete dir="distribution/greenstone3/lib/jni"/>
60 <copy todir="distribution/greenstone3/lib/jni"><fileset dir="greenstone3/lib/jni"/></copy>
61
62 <delete dir="distribution/greenstone3/gs2build/bin/windows"/>
63 <copy todir="distribution/greenstone3/gs2build/bin/windows"><fileset dir="greenstone3/gs2build/bin/windows"/></copy>
64
65 <delete dir="distribution/greenstone3/gs2build/bin/java"/>
66 <copy todir="distribution/greenstone3/gs2build/bin/java"><fileset dir="greenstone3/gs2build/bin/java"/></copy>
67
68 <copy todir="distribution/greenstone3/bin" file="greenstone3/bin/search4j.exe"/>
69 </target>
70
71 <target name="insert-icon">
72 <copy
73 file="${wirk3.home}/greenstone3/icon/icon.ico"
74 tofile="distribution/greenstone3/resources/images/gs3.ico"/>
75 </target>
76
77 <target name="rename-build-xml-for-transit">
78 <move
79 file="distribution/greenstone3/build.xml"
80 tofile="distribution/greenstone3/greenstone3-build.xml" />
81 </target>
82
83</project>
Note: See TracBrowser for help on using the repository browser.