source: main/trunk/release-kits/kits/rk3/ant-scripts/create-components.xml@ 21389

Last change on this file since 21389 was 21311, checked in by oranfry, 14 years ago

merging the greenstone2 release kits

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="rk3-create-components">
3
4 <import file="${basedir}/distributions/web/resources/xml/components.xml"/>
5 <import file="${rk.home}/core/ant-scripts/init.xml"/>
6
7 <!-- create components from the distributions folder -->
8
9 <target name="create-components">
10
11 <antcall target="prepare-component"><param name="component" value="core"/></antcall>
12 <antcall target="compress-component"><param name="component" value="core"/></antcall>
13
14 <antcall target="prepare-component"><param name="component" value="tomcat"/></antcall>
15 <antcall target="compress-component"><param name="component" value="tomcat"/></antcall>
16
17 <antcall target="prepare-component"><param name="component" value="imagemagick"/></antcall>
18 <antcall target="compress-component"><param name="component" value="imagemagick"/></antcall>
19
20 <!-- windows and mac only -->
21 <if><bool><or><equals arg1="${rk.os}" arg2="windows"/><equals arg1="${rk.os}" arg2="mac"/></or></bool>
22 <antcall target="prepare-component"><param name="component" value="ghostscript"/></antcall>
23 <antcall target="compress-component"><param name="component" value="ghostscript"/></antcall>
24 </if>
25
26 </target>
27
28
29</project>
Note: See TracBrowser for help on using the repository browser.