source: release-kits/lirk3/ant-scripts/compile.xml@ 20084

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

allow sourcecode to make it in for this release

File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="lirk3-compile" default="compile">
3
4 <target name="compile">
5 <antcall target="checkout-greenstone3" />
6 <antcall target="greenstone3-set-version-numbers"><param name="greenstone3basedir" value="compiled"/></antcall>
7 <ant dir="compiled" inheritAll="false">
8 <target name="prepare"/>
9 <propertyset refid="forward.properties"/>
10 </ant>
11 <antcall target="gli-set-version-numbers"><param name="glibasedir" value="compiled/gli" /></antcall>
12 <ant dir="compiled" inheritAll="false">
13 <target name="install"/>
14 <!-- we are temporarily leaving in src code -->
15 <target name="distclean"/>
16 <target name="dist-tidy"/>
17 <propertyset refid="forward.properties"/>
18 </ant>
19 <antcall target="insert-xml-parser"/>
20 <antcall target="insert-ant"/>
21 <antcall target="insert-documented-examples"/>
22 <antcall target="insert-imagemagick-linux-binaries"/>
23 <antcall target="compile-uninstaller" /> <!-- from rk3-targets -->
24 <antcall target="prepare-documentation"/> <!-- from rk3-targets -->
25 </target>
26
27 <target name="insert-imagemagick-linux-binaries">
28 <delete dir="compiled/bin/linux/imagemagick"/>
29 <svn>
30 <export srcurl="${svn.root}/other-projects/trunk/linux-binaries/imagemagick" destPath="compiled/gs2build/bin/linux/imagemagick"/>
31 </svn>
32 </target>
33
34</project>
Note: See TracBrowser for help on using the repository browser.