source: release-kits/lirk2/ant-scripts/build.xml@ 17396

Last change on this file since 17396 was 17396, checked in by oranfry, 16 years ago

componentised releases in wirk2

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 June 2008
5 Linux Release Kit for Greenstone2 (lirk2)
6 Oran Fry
7 ..........................................................
8-->
9
10<project name="lirk2-build" default="lirk2">
11
12 <!-- CONSTANTS -->
13
14 <!-- for the benefit of the shared scripts, set release-kit home -->
15 <property name="rk.home" value="${lirk2.home}" />
16 <property name="rk.os" value="linux" />
17
18 <property name="bundled.version.ghostscript" value=""/>
19 <property name="bundled.version.imagemagick" value=""/>
20
21 <!-- IMPORT OTHER ANT SCRIPTS -->
22 <import file="shared-ant-scripts/init.xml"/>
23 <import file="shared-ant-scripts/operations-on-gli.xml"/>
24 <import file="../greenstone2/ant-scripts/rk2-targets.xml"/>
25 <import file="compile.xml"/>
26 <import file="create-distribution.xml"/>
27 <import file="create-components.xml"/>
28 <import file="create-installer.xml"/>
29 <import file="wrap.xml"/>
30
31 <!-- THE MAIN TARGET -->
32 <target name="lirk2" depends="init">
33 <antcall target="compile"/>
34 <antcall target="create-distribution"/>
35 <antcall target="create-components"/>
36 <antcall target="create-installer"/>
37 <antcall target="wrap"/>
38 </target>
39
40</project>
Note: See TracBrowser for help on using the repository browser.