source: release-kits/lirk3/ant-scripts/build.xml@ 19980

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

use the generalised targets to create components

File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 February 2008
5 Linux Release Kit for Greenstone3 (lirk3)
6 Oran Fry
7 ..........................................................
8-->
9
10<project name="lirk3-build" default="lirk3">
11
12 <!-- CONSTANTS -->
13
14 <!-- for the benefit of the shared scripts, set release-kit home -->
15 <property name="rk.name" value="lirk3"/>
16 <property name="rk.home" value="${lirk3.home}" />
17 <property name="rk.os" value="linux" />
18 <property name="os.suffix" value="linux"/>
19
20 <!-- IMPORT OTHER ANT SCRIPTS -->
21 <import file="../core/ant-scripts/init.xml"/>
22 <import file="../core/ant-scripts/operations-on-gli.xml"/>
23 <import file="../greenstone3/ant-scripts/rk3-targets.xml"/>
24 <import file="../linux/ant-scripts/linux-targets.xml"/>
25
26 <import file="compile.xml"/>
27 <import file="create-distribution.xml"/>
28 <import file="create-installer.xml"/>
29 <import file="wrap.xml"/>
30
31 <!-- THE MAIN TARGET -->
32 <target name="lirk3" depends="init,gs3-init">
33 <antcall target="compile"/>
34 <antcall target="create-distribution"/>
35 <ant inheritRefs="true" dir="." antfile="${lirk3.home}/ant-scripts/create-components.xml" target="create-components"/>
36 <antcall target="create-installer"/>
37 <antcall target="wrap"/>
38 </target>
39
40 <target name="properties">
41 <echo>Required Properties:</echo>
42 <echo>version the version string for the release</echo>
43 <echo/>
44 <echo>Optional Properties:</echo>
45 <echo>branch.path the branch of Greenstone3 to make a release of. Eg: tags/2.81. Default: trunk.</echo>
46 <echo>branch.revision the revision of Greenstone3 to make a release of. Eg: 18273. Default: HEAD.</echo>
47 <echo/>
48 </target>
49
50
51</project>
Note: See TracBrowser for help on using the repository browser.