source: release-kits/mark2/ant-scripts/create-cdrom-components.xml@ 19592

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

separating out cdrom code for linux and mac too

File size: 1.5 KB
Line 
1<project name="mark2-create-cdrom-components">
2
3 <!--
4 cd components
5 produce components for cdrom distributions, to be picked up and used by cdrk2 release kit
6 only include files that aren't for all operating systems, as those files are taken care of by lirk2
7 -->
8
9 <target name="create-cdrom-components">
10 <antcall target="compile-cdrom-installer"/> <!-- from init -->
11 <antcall target="prepare-cdrom-components"/>
12 </target>
13
14 <target name="prepare-cdrom-components">
15
16 <delete dir="cdrom"/>
17 <mkdir dir="cdrom/build"/>
18 <mkdir dir="cdrom/dist/Software"/>
19 <mkdir dir="cdrom/dist/Java/Mac"/>
20 <mkdir dir="cdrom/dist/Java/Jars"/>
21
22 <!-- core -->
23 <mkdir dir="cdrom/dist/Software/core/mac"/>
24 <copy todir="components/tmp/cdrom/Software/core/mac" overwrite="true">
25 <fileset dir="components/tmp/core">
26 <include name="bin/darwin"/>
27 <include name="bin/darwin/**/*"/>
28 <include name="bin/windows"/>
29 <include name="bin/windows/**/*"/>
30 <include name="apache-httpd"/>
31 <include name="apache-httpd/**/*"/>
32 <include name="*.sh"/>
33 <include name="*.csh"/>
34 <include name="*.bash"/>
35 </fileset>
36 </copy>
37
38 <!-- imagemagick -->
39 <mkdir dir="cdrom/dist/Software/imagemagick/mac"/>
40 <copy todir="cdrom/dist/Software/imagemagick/mac" overwrite="true">
41 <fileset dir="components/tmp/imagemagick"/>
42 </copy>
43
44 <!-- ghostscript -->
45 <mkdir dir="cdrom/dist/Software/ghostscript/mac"/>
46 <copy todir="cdrom/dist/Software/ghostscript/mac" overwrite="true">
47 <fileset dir="components/tmp/ghostscript"/>
48 </copy>
49
50 </target>
51
52</project>
Note: See TracBrowser for help on using the repository browser.