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

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

cleanup stray zipfiles, and the new imagemagick component

File size: 3.5 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="export-imagemagick-linux-binaries" />
34 <antcall target="insert-uninstaller"><param name="script-format" value="sh"/></antcall> <!-- from rk3-targets -->
35 <antcall target="rename-build-xml-for-transit"/>
36 <antcall target="strip-svn-dirs"><param name="dir" value="distribution/greenstone3"/></antcall> <!-- from init -->
37 </target>
38
39 <target name="export-greenstone3-gli">
40 <mkdir dir="distribution"/>
41 <delete dir="distribution/greenstone3"/>
42 <svn>
43 <export srcurl="${svn.root}/greenstone3/${branch.path}" destPath="distribution/greenstone3"/>
44 <export srcurl="${svn.root}/gli/${branch.path}" destPath="distribution/greenstone3/gli"/>
45 </svn>
46 </target>
47
48 <target name="export-imagemagick-linux-binaries">
49 <delete dir="distribution/greenstone3/gs2build/bin/linux/imagemagick"/>
50 <svn>
51 <export srcurl="${svn.root}/other-projects/trunk/linux-binaries/imagemagick" destPath="distribution/greenstone3/gs2build/bin/linux/imagemagick"/>
52 </svn>
53 </target>
54
55 <target name="copy-over-build-xml">
56 <move file="distribution/greenstone3/modified-build.xml" tofile="distribution/greenstone3/build.xml"/>
57 </target>
58
59 <target name="insert-user-manual">
60 <copy file="greenstone3/gsdl-manuals/manuals/build/en/pdf/User_en.pdf" tofile="distribution/greenstone3/docs/manual/gs2_user_en.pdf"/>
61 </target>
62
63 <target name="insert-compiled-binaries">
64 <delete dir="distribution/greenstone3/lib/jni"/>
65 <exec executable="cp"><arg line="-r greenstone3/lib/jni distribution/greenstone3/lib"/></exec>
66
67 <delete dir="distribution/greenstone3/gs2build/bin/linux"/>
68 <exec executable="cp"><arg line="-r greenstone3/gs2build/bin/linux distribution/greenstone3/gs2build/bin"/></exec>
69
70 <delete dir="distribution/greenstone3/gs2build/bin/java"/>
71 <exec executable="cp"><arg line="-r greenstone3/gs2build/bin/java distribution/greenstone3/gs2build/bin"/></exec>
72 </target>
73
74 <target name="rename-build-xml-for-transit">
75 <move file="distribution/greenstone3/build.xml" tofile="distribution/greenstone3/greenstone3-build.xml"/>
76 </target>
77
78</project>
Note: See TracBrowser for help on using the repository browser.