source: release-kits/mark3/ant-scripts/create-installer.xml@ 18283

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

use new libsearch4j spec and unzip sqlite package on all platrforms

File size: 978 bytes
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="mark3-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 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 <copy todir="${basedir}/installer/classes" overwrite="true">
14 <fileset file="${basedir}/distributions/web/LICENSE.txt" />
15 </copy>
16
17 <unjar src="${mark3.home}/ant-scripts/tasks/greenstone/anttasks.jar" dest="${basedir}/installer/classes"/>
18 <delete dir="${basedir}/installer/classes/META-INF"/>
19
20 <unjar src="${mark3.home}/ant-scripts/tasks/7z-ant/7z.jar" dest="${basedir}/installer/classes"/>
21 <delete dir="${basedir}/installer/classes/META-INF"/>
22
23 </target>
24
25</project>
Note: See TracBrowser for help on using the repository browser.