source: release-kits/lirk3/ant-scripts/create-installer.xml@ 17098

Last change on this file since 17098 was 16777, checked in by oranfry, 16 years ago

bringing lirk3 up to speed with compnent size calculation

File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="lirk3-create-installer" default="create-installer">
3
4 <target name="create-installer">
5 <antcall target="copy-installer-files"/>
6 <antcall target="make-installer-files-concrete"/> <!-- from rk3-targets -->
7 <antcall target="compile-installer"/>
8 </target>
9
10 <target name="copy-installer-files">
11 <echo>Getting things ready to compile the installer</echo>
12 <mkdir dir="${basedir}/installer/resources"/>
13 <copy todir="${basedir}/installer" file="${lirk3.home}/installer/antinstall-config.xml" overwrite="true" />
14 <copy todir="${basedir}/installer" file="${lirk3.home}/installer/build.xml" overwrite="true" />
15 <copy todir="${basedir}/installer/classes" overwrite="true">
16 <fileset dir="${lirk3.home}/greenstone3/installer-classes"/>
17 <fileset dir="${lirk3.home}/ant-scripts/tasks/orans" includes="RegexSearchReplace.class" />
18 </copy>
19 </target>
20
21 <target name="compile-installer">
22 <installer file="${basedir}/installer/greenstone3-with-java.jar"
23 compress="true"
24 extractType="NonExtractor"
25 installConfig="${basedir}/installer/antinstall-config.xml"
26 buildFile="${basedir}/installer/build.xml"
27 antInstallLib="${lirk3.home}/packages/ant-installer/lib"
28 antLib="${lirk3.home}/packages/ant/lib"
29 validateConfig="true"
30 failOnError="false"
31 icons="bluecurve">
32
33 <!-- copy all the important files into the archive to be extracted for install -->
34 <zipfileset dir="${basedir}/installer/classes" includes="**/*" /> <!-- installer classes -->
35 <zipfileset dir="${basedir}/distribution/greenstone3" includes="**/*"/>
36
37 </installer>
38
39 <!-- delete the 'bundled java only' lines from the installer config -->
40 <rsr file="${basedir}/installer/antinstall-config.xml" pattern=".*&lt;!-- bundled java only --&gt;" replacement=""/>
41
42 <installer file="${basedir}/installer/greenstone3.jar"
43 compress="true"
44 extractType="NonExtractor"
45 installConfig="${basedir}/installer/antinstall-config.xml"
46 buildFile="${basedir}/installer/build.xml"
47 antInstallLib="${lirk3.home}/packages/ant-installer/lib"
48 antLib="${lirk3.home}/packages/ant/lib"
49 validateConfig="true"
50 icons="bluecurve">
51
52 <zipfileset dir="${basedir}/installer/classes" includes="**/*"/>
53 <zipfileset dir="${basedir}/distribution/greenstone3" includes="**/*"/>
54 </installer>
55 </target>
56
57</project>
Note: See TracBrowser for help on using the repository browser.