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

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

changes to wirk3 comparable to the ones just done on lirk3

File size: 1.1 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 <antcall target="gli-set-version-numbers"><param name="glibasedir" value="compiled/gli" /></antcall>
8 <ant dir="compiled" inheritAll="false">
9 <target name="prepare"/>
10 <target name="install"/>
11 <target name="dist-tidy"/>
12 <propertyset refid="forward.properties"/>
13 </ant>
14 <antcall target="insert-xml-parser"/>
15 <antcall target="insert-ant"/>
16 <antcall target="insert-documented-examples"/>
17 <antcall target="insert-imagemagick-linux-binaries"/>
18 <antcall target="compile-uninstaller" /> <!-- from rk3-targets -->
19 <antcall target="prepare-documentation"/> <!-- from rk3-targets -->
20 </target>
21
22 <target name="insert-imagemagick-linux-binaries">
23 <delete dir="compiled/bin/linux/imagemagick"/>
24 <svn>
25 <export srcurl="${svn.root}/other-projects/trunk/linux-binaries/imagemagick" destPath="compiled/gs2build/bin/linux/imagemagick"/>
26 </svn>
27 </target>
28
29</project>
Note: See TracBrowser for help on using the repository browser.