source: release-kits/wirk3/ant-scripts/create-installer.xml@ 19006

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

changed the release kits to use the new shared code structure

File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="wirk3-create-installer" default="create-installer">
3
4 <target name="create-installer">
5 <antcall target="copy-installer-files"/>
6 <antcall target="make-installer-files-concrete"><param name="java.os" value="windows"/></antcall> <!-- from init -->
7 <antcall target="compile-binary-installer"/> <!-- from init -->
8 <antcall target="compile-minimal-installer"/> <!-- from init -->
9 </target>
10
11 <target name="copy-installer-files" depends="copy-main-installer-files"> <!-- from init -->
12
13 <!-- some canned resources for the installer -->
14 <copy todir="${basedir}/installer/classes" overwrite="true">
15 <fileset dir="${wirk3.home}/windows/7za" includes="7za.exe"/>
16 <fileset file="${basedir}/distributions/web/LICENSE.txt"/>
17 </copy>
18
19 <!-- some classes from jars, unpacked to be repacked into installer -->
20 <unjar src="${wirk3.home}/core/ant-tasks/greenstone/anttasks.jar" dest="${basedir}/installer/classes"/>
21 <delete dir="${basedir}/installer/classes/META-INF"/>
22
23 <!--
24 <unjar src="${wirk3.home}/ant-scripts/tasks/orangevolt/roxes-win32forjava-1.1.1.jar" dest="${basedir}/installer/classes"/>
25 <delete dir="${basedir}/installer/classes/META-INF"/>
26
27 <unjar src="${wirk3.home}/ant-scripts/tasks/orangevolt/orangevolt-ant-tasks-1.3.8.jar" dest="${basedir}/installer/classes"/>
28 <delete dir="${basedir}/installer/classes/META-INF"/>
29 -->
30
31 </target>
32
33</project>
Note: See TracBrowser for help on using the repository browser.