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

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

dont try to create the source distibution anymore as that is done by sork

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