source: release-kits/mark3/ant-scripts/create-components.xml@ 17721

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

gave each sourcecode component zip a unique name

File size: 6.6 KB
RevLine 
[17423]1<?xml version="1.0" encoding="utf-8" ?>
2<project name="mark3-create-components" default="create-components">
3
4 <!-- create components from the distribution folder -->
[17652]5
6 <!-- 1st level -->
[17423]7 <target name="create-components">
[17652]8 <antcall target="prepare-components" />
9 <antcall target="compress-components" />
[17423]10 </target>
11
[17652]12 <!-- 2nd level -->
13 <target name="prepare-components">
[17423]14 <antcall target="prepare-core-component" />
15 <antcall target="prepare-sourcecode-component" />
16 <antcall target="prepare-ant-component" />
17 <antcall target="prepare-tomcat-component" />
[17706]18 <antcall target="prepare-sourcecode-core-component" />
[17663]19 <antcall target="prepare-imagemagick-component" />
20 <antcall target="prepare-ghostscript-component" />
[17423]21 </target>
[17652]22
23 <target name="compress-components">
24 <antcall target="compress-core-component" />
25 <antcall target="compress-sourcecode-component" />
26 <antcall target="compress-ant-component" />
27 <antcall target="compress-tomcat-component" />
[17706]28 <antcall target="compress-sourcecode-core-component" />
[17663]29 <antcall target="compress-imagemagick-component" />
30 <antcall target="compress-ghostscript-component" />
[17652]31 </target>
32
33 <!-- 3rd level -->
[17659]34 <!-- core -->
[17423]35 <target name="prepare-core-component">
36
[17453]37 <delete dir="components/tmp/core"/>
[17423]38 <mkdir dir="components/tmp/core"/>
39
40 <copy todir="components/tmp/core" overwrite="true">
41 <fileset dir="distribution/greenstone3">
42 <include name="**/*"/>
43
44 <!-- exclude sourcecode -->
[17660]45 <exclude name="src"/>
[17447]46 <exclude name="src/**/*"/>
[17660]47 <exclude name="gs2build/common-src"/>
[17423]48 <exclude name="gs2build/common-src/**/*"/>
[17660]49 <exclude name="gs2build/build-src"/>
[17423]50 <exclude name="gs2build/build-src/**/*"/>
[17660]51 <exclude name="gs2build/runtime-src"/>
[17423]52 <exclude name="gs2build/runtime-src/**/*"/>
53
54 <!-- exclude ant -->
[17660]55 <exclude name="packages/ant"/>
[17423]56 <exclude name="packages/ant/**/*"/>
57
58 <!-- exclude tomcat -->
[17660]59 <exclude name="packages/tomcat"/>
[17423]60 <exclude name="packages/tomcat/**/*"/>
61
[17660]62 <!-- exclude imagemagick -->
63 <exclude name="gs2build/bin/darwin/imagemagick"/>
64 <exclude name="gs2build/bin/darwin/imagemagick/**/*"/>
65
[17423]66 </fileset>
[17706]67 </copy>
[17423]68
69 <zip destfile="components/core.comp" basedir="components/tmp/core" compress="false" />
70 </target>
71
72 <target name="compress-core-component">
73 <sevenzip task="encode" input="components/core.comp" output="components/core.lzma" dictionnary="26"/>
74 </target>
75
[17659]76 <!-- sourcecode-core -->
77 <target name="prepare-sourcecode-core-component">
78 <delete dir="components/tmp/sourcecode-core"/>
79 <mkdir dir="components/tmp/sourcecode-core"/>
80
81 <copy todir="components/tmp/sourcecode-core" overwrite="true">
82 <fileset dir="distribution/source">
83 <include name="gli/**/*"/>
84 <include name="docs/**/*"/>
85 <include name="resources/**/*"/>
86 <include name="web/**/*"/>
87 <include name="gs2build/etc/**/*"/>
88 <include name="gs2build/setup.bash"/>
89 <include name="build.xml"/>
90 <include name="build.properties"/>
91 <include name="*.sh"/>
92 <include name="*.txt"/>
93 </fileset>
94 </copy>
95 <zip destfile="components/sourcecode-core.comp" basedir="components/tmp/sourcecode-core" compress="false" includes="**/*"/>
96 </target>
97
98 <target name="compress-sourcecode-core-component">
99 <sevenzip task="encode" input="components/sourcecode-core.comp" output="components/sourcecode-core.lzma" dictionnary="26"/>
100 </target>
101
102
103 <!-- sourcecode -->
[17423]104 <target name="prepare-sourcecode-component">
[17453]105
106 <delete dir="components/tmp/sourcecode"/>
[17423]107 <mkdir dir="components/tmp/sourcecode"/>
[17453]108
[17423]109 <copy todir="components/tmp/sourcecode" overwrite="true">
110 <fileset dir="distribution/greenstone3">
111 <include name="src/**/*"/>
112 <include name="gs2build/common-src/**/*"/>
113 <include name="gs2build/build-src/**/*"/>
114 <include name="gs2build/runtime-src/**/*"/>
115 </fileset>
116 </copy>
117
118 <zip destfile="components/sourcecode.comp" basedir="components/tmp/sourcecode" compress="false" />
[17721]119 <zip destfile="components/Greenstone-${version}-MacOS-${processor}-sourcecode.zip" basedir="components/tmp/sourcecode" compress="true"/>
[17423]120 </target>
121
122 <target name="compress-sourcecode-component">
123 <sevenzip task="encode" input="components/sourcecode.comp" output="components/sourcecode.lzma" dictionnary="26"/>
124 </target>
125
[17659]126 <!-- ant -->
[17423]127 <target name="prepare-ant-component">
[17453]128
[17455]129 <delete dir="components/tmp/ant"/>
130 <mkdir dir="components/tmp/ant"/>
[17453]131
[17423]132 <copy todir="components/tmp/ant" overwrite="true">
133 <fileset dir="distribution/greenstone3/packages">
134 <include name="ant/**/*"/>
135 </fileset>
136 </copy>
137
138 <zip destfile="components/ant.comp" basedir="components/tmp/ant" compress="false" />
139 </target>
140
141 <target name="compress-ant-component">
142 <sevenzip task="encode" input="components/ant.comp" output="components/ant.lzma" dictionnary="26"/>
143 </target>
144
[17659]145 <!-- tomcat -->
[17423]146 <target name="prepare-tomcat-component">
[17453]147
148 <delete dir="components/tmp/tomcat"/>
[17423]149 <mkdir dir="components/tmp/tomcat"/>
[17453]150
[17423]151 <copy todir="components/tmp/tomcat" overwrite="true">
152 <fileset dir="distribution/greenstone3/packages">
153 <include name="tomcat/**/*"/>
154 </fileset>
155 </copy>
156
157 <zip destfile="components/tomcat.comp" basedir="components/tmp/tomcat" compress="false" />
158 </target>
159
160 <target name="compress-tomcat-component">
161 <sevenzip task="encode" input="components/tomcat.comp" output="components/tomcat.lzma" dictionnary="26"/>
[17659]162 </target>
[17652]163
[17659]164 <!-- imagemagick -->
165 <target name="prepare-imagemagick-component">
[17652]166
[17659]167 <delete dir="components/tmp/imagemagick"/>
168 <mkdir dir="components/tmp/imagemagick"/>
169
170 <copy todir="components/tmp/imagemagick" overwrite="true">
[17660]171 <fileset dir="distribution/greenstone3/gs2build/bin/darwin">
[17659]172 <include name="imagemagick/**/*"/>
[17652]173 </fileset>
174 </copy>
[17659]175
176 <zip destfile="components/imagemagick.comp" basedir="components/tmp/imagemagick" compress="false" includes="**/*"/>
[17652]177 </target>
[17659]178
179 <target name="compress-imagemagick-component">
180 <sevenzip task="encode" input="components/imagemagick.comp" output="components/imagemagick.lzma" dictionnary="26"/>
[17652]181 </target>
[17706]182
[17663]183 <!-- ghostscript -->
184 <target name="prepare-ghostscript-component">
185
186 <delete dir="components/tmp/ghostscript"/>
187 <mkdir dir="components/tmp/ghostscript"/>
188
189 <copy todir="components/tmp/ghostscript" overwrite="true">
[17708]190 <fileset dir="distribution/greenstone3/gs2build/bin/darwin">
[17663]191 <include name="ghostscript/**/*"/>
192 </fileset>
193 </copy>
194
195 <zip destfile="components/ghostscript.comp" basedir="components/tmp/ghostscript" compress="false" includes="**/*"/>
196 </target>
197
198 <target name="compress-ghostscript-component">
199 <sevenzip task="encode" input="components/ghostscript.comp" output="components/ghostscript.lzma" dictionnary="26"/>
200 </target>
201
[17423]202</project>
Note: See TracBrowser for help on using the repository browser.