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

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

import the linux targets to these release kits

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