source: main/trunk/release-kits/rk2/ant-scripts/components.xml@ 21318

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

bug fixes

File size: 1.6 KB
Line 
1<!-- an ant project containing authoritative definitions of the components of greenstone3 -->
2<project name="components">
3
4 <!-- source component - files that get compiled and could be safely removed from a binary distribution -->
5 <patternset id="greenstone2.source.component">
6 <include name="gli/src"/>
7 <include name="gli/src/**/*"/>
8 <include name="common-src"/>
9 <include name="common-src/**/*"/>
10 <include name="build-src"/>
11 <include name="build-src/**/*"/>
12 <include name="runtime-src"/>
13 <include name="runtime-src/**/*"/>
14 <include name="aclocal.m4"/>
15 <include name="config.guess"/>
16 <include name="config.h.in"/>
17 <include name="config.sub"/>
18 <include name="configure"/>
19 <include name="configure.in"/>
20 <include name="install-sh"/>
21 <include name="Makefile.in"/>
22 <include name="win32.mak"/>
23 <include name="win32cfg.h"/>
24 </patternset>
25
26 <!-- imagemagick -->
27 <patternset id="greenstone2.imagemagick.component">
28 <include name="bin/**/imagemagick"/>
29 <include name="bin/**/imagemagick/**/*"/>
30 </patternset>
31
32 <!-- ghostscript -->
33 <patternset id="greenstone2.ghostscript.component">
34 <include name="bin/**/ghostscript"/>
35 <include name="bin/**/ghostscript/**/*"/>
36 </patternset>
37
38 <!-- the core component - defined by antithesis -->
39 <patternset id="greenstone2.core.component">
40 <invert>
41 <patternset refid="greenstone2.source.component"/>
42 <patternset refid="greenstone2.imagemagick.component"/>
43 <patternset refid="greenstone2.ghostscript.component"/>
44 </invert>
45 </patternset>
46
47</project>
48
Note: See TracBrowser for help on using the repository browser.