source: release-kits/cdrk2/ant-scripts/build.xml@ 18737

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

building up the structure of cdrk2

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 March 2009
5 CD Release Kit for Greenstone2 (cdrk2)
6 Oran Fry
7 ..........................................................
8-->
9
10<project name="cdrk2-build" default="cdrk2">
11
12 <!-- CONSTANTS -->
13
14 <!-- for the benefit of the shared scripts, set release-kit home -->
15 <property name="rk.name" value="cdrk2"/>
16 <property name="rk.home" value="${cdrk2.home}" />
17 <property name="rk.os" value="multi" />
18 <property name="os.suffix" value="AnyPlatform"/>
19
20 <!-- IMPORT OTHER ANT SCRIPTS -->
21 <import file="shared-ant-scripts/init.xml"/>
22 <import file="shared-ant-scripts/operations-on-gli.xml"/>
23 <import file="../greenstone2/ant-scripts/rk2-targets.xml"/>
24
25 <!-- THE MAIN TARGET -->
26 <target name="cdrk2" depends="init">
27 <antcall target="export-documented-example-collections"/>
28
29 </target>
30
31 <target name="export-documented-example-collections">
32 <mkdir dir="cd"/>
33 <svn>
34 <export srcurl="${svn.root}/documented-example-collections/${branch.path}" destPath="cd"/>
35 </svn>
36 </target>
37
38</project>
Note: See TracBrowser for help on using the repository browser.