source: release-kits/lirk3/ant-scripts/create-components.xml@ 19953

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

allow sourcecode to make it in for this release

File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="lirk3-create-components" default="create-components">
3
4 <!-- create components from the distributions folder -->
5
6 <!-- 1st level -->
7 <target name="create-components">
8 <antcall target="prepare-components" />
9 <antcall target="compress-components" />
10 </target>
11
12 <!-- 2nd level -->
13 <target name="prepare-components">
14 <antcall target="prepare-core-component" />
15 <antcall target="prepare-ant-component" />
16 <antcall target="prepare-tomcat-component" />
17 <antcall target="prepare-imagemagick-component" />
18 </target>
19
20 <target name="compress-components">
21 <antcall target="compress-core-component" />
22 <antcall target="compress-ant-component" />
23 <antcall target="compress-tomcat-component" />
24 <antcall target="compress-imagemagick-component" />
25 </target>
26
27 <!-- 3rd level -->
28
29 <!-- core -->
30 <target name="prepare-core-component">
31
32 <delete dir="components/tmp/core"/>
33 <mkdir dir="components/tmp/core"/>
34
35 <copy todir="components/tmp/core" overwrite="true">
36 <fileset dir="distributions/web">
37 <include name="**/*"/>
38
39 <!-- exclude sourcecode -->
40<!--
41 <exclude name="src"/>
42 <exclude name="src/**/*"/>
43 <exclude name="gs2build/common-src"/>
44 <exclude name="gs2build/common-src/**/*"/>
45 <exclude name="gs2build/build-src"/>
46 <exclude name="gs2build/build-src/**/*"/>
47 <exclude name="gs2build/runtime-src"/>
48 <exclude name="gs2build/runtime-src/**/*"/>
49-->
50 <exclude name="packages/ant"/>
51 <exclude name="packages/ant/**/*"/>
52 <exclude name="packages/tomcat"/>
53 <exclude name="packages/tomcat/**/*"/>
54 <exclude name="distributions/web/gs2build/bin/linux/imagemagick"/>
55 <exclude name="distributions/web/gs2build/bin/linux/imagemagick/**/*"/>
56
57 </fileset>
58 </copy>
59
60 <zip destfile="components/core.comp" basedir="components/tmp/core" compress="false" />
61 </target>
62
63 <target name="compress-core-component">
64 <sevenzip task="encode" input="components/core.comp" output="components/core.lzma" dictionnary="26"/>
65 </target>
66
67 <!-- ant -->
68 <target name="prepare-ant-component">
69
70 <delete dir="components/tmp/ant"/>
71 <mkdir dir="components/tmp/ant"/>
72
73 <copy todir="components/tmp/ant" overwrite="true">
74 <fileset dir="distributions/web" includes="packages/ant/**/*"/>
75 </copy>
76
77 <zip destfile="components/ant.comp" basedir="components/tmp/ant" compress="false" />
78 </target>
79
80 <target name="compress-ant-component">
81 <sevenzip task="encode" input="components/ant.comp" output="components/ant.lzma" dictionnary="26"/>
82 </target>
83
84 <!-- tomcat -->
85 <target name="prepare-tomcat-component">
86
87 <delete dir="components/tmp/tomcat"/>
88 <mkdir dir="components/tmp/tomcat"/>
89
90 <copy todir="components/tmp/tomcat" overwrite="true">
91 <fileset dir="distributions/web" includes="packages/tomcat/**/*"/>
92 </copy>
93
94 <zip destfile="components/tomcat.comp" basedir="components/tmp/tomcat" compress="false" />
95 </target>
96
97 <target name="compress-tomcat-component">
98 <sevenzip task="encode" input="components/tomcat.comp" output="components/tomcat.lzma" dictionnary="26"/>
99 </target>
100
101 <!-- imagemagick -->
102 <target name="prepare-imagemagick-component">
103
104 <delete dir="components/tmp/imagemagick"/>
105 <mkdir dir="components/tmp/imagemagick"/>
106
107 <copy todir="components/tmp/imagemagick" overwrite="true">
108 <fileset dir="distributions/web" includes="gs2build/bin/linux/imagemagick/**/*"/>
109 </copy>
110
111 <zip destfile="components/imagemagick.comp" basedir="components/tmp/imagemagick" compress="false" includes="**/*"/>
112 </target>
113
114 <target name="compress-imagemagick-component">
115 <sevenzip task="encode" input="components/imagemagick.comp" output="components/imagemagick.lzma" dictionnary="26"/>
116 </target>
117
118
119</project>
Note: See TracBrowser for help on using the repository browser.