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

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

remember to insert search4j in lirk3

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