source: release-kits/lirk3/ant-scripts/create-distribution.xml@ 17523

Last change on this file since 17523 was 17523, checked in by oranfry, 16 years ago

dont compile search4j and pass param to make-concrete task

File size: 3.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="lirk3-create-distribution" default="create-distribution">
3
4 <target name="create-distribution">
5 <!-- create distribution -->
6 <antcall target="export-greenstone3-gli" />
7 <antcall target="greenstone3-set-version-numbers">
8 <param name="greenstone3basedir" value="${basedir}/distribution/greenstone3"/>
9 </antcall>
10 <antcall target="gli-set-version-numbers">
11 <param name="glibasedir" value="${basedir}/distribution/greenstone3/gli"/>
12 </antcall>
13
14 <!-- create distributions 1, 2 and 3 -->
15 <ant antfile="${lirk3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" target="create-distribution-1" inheritAll="false">
16 <property name="app.version" value="${version}"/>
17 <property name="branch.path" value="${branch.path}"/>
18 </ant>
19
20 <ant antfile="${lirk3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" target="create-distribution-2" inheritAll="false">
21 <property name="app.version" value="${version}"/>
22 <property name="branch.path" value="${branch.path}"/>
23 </ant>
24
25 <ant antfile="${lirk3.home}/ant-scripts/operations-on-gs3home.xml" dir="distribution/greenstone3" target="create-distribution-3" inheritAll="false">
26 <property name="app.version" value="${version}"/>
27 <property name="branch.path" value="${branch.path}"/>
28 </ant>
29
30 <antcall target="copy-over-build-xml" />
31 <antcall target="insert-user-manual"/>
32 <antcall target="insert-compiled-binaries"/>
33 <antcall target="insert-uninstaller"><param name="script-format" value="sh"/></antcall> <!-- from rk3-targets -->
34 <antcall target="rename-build-xml-for-transit"/>
35 <antcall target="strip-svn-dirs"><param name="dir" value="distribution/greenstone3"/></antcall> <!-- from init -->
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"/>
43 <export srcurl="${svn.root}/gli/${branch.path}" destPath="distribution/greenstone3/gli"/>
44 </svn>
45 </target>
46
47 <target name="copy-over-build-xml">
48 <move file="distribution/greenstone3/modified-build.xml" tofile="distribution/greenstone3/build.xml"/>
49 </target>
50
51 <target name="insert-user-manual">
52 <copy file="greenstone3/gsdl-manuals/manuals/build/en/pdf/User_en.pdf" tofile="distribution/greenstone3/docs/manual/gs2_user_en.pdf"/>
53 </target>
54
55 <target name="insert-compiled-binaries">
56 <delete dir="distribution/greenstone3/lib/jni"/>
57 <exec executable="cp"><arg line="-r greenstone3/lib/jni distribution/greenstone3/lib"/></exec>
58
59 <delete dir="distribution/greenstone3/gs2build/bin/linux"/>
60 <exec executable="cp"><arg line="-r greenstone3/gs2build/bin/linux distribution/greenstone3/gs2build/bin"/></exec>
61
62 <delete dir="distribution/greenstone3/gs2build/bin/java"/>
63 <exec executable="cp"><arg line="-r greenstone3/gs2build/bin/java distribution/greenstone3/gs2build/bin"/></exec>
64 </target>
65
66 <target name="rename-build-xml-for-transit">
67 <move file="distribution/greenstone3/build.xml" tofile="distribution/greenstone3/greenstone3-build.xml"/>
68 </target>
69
70</project>
Note: See TracBrowser for help on using the repository browser.