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

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

changed the release kits to use the new shared code structure

File size: 972 bytes
RevLine 
[14982]1<?xml version="1.0" encoding="utf-8" ?>
[16655]2<project name="mark3-create-installer" default="create-installer">
[14982]3
4 <target name="create-installer">
[16744]5 <antcall target="copy-installer-files"/>
[17697]6 <antcall target="make-installer-files-concrete"/> <!-- from init -->
[17597]7 <antcall target="compile-binary-installer"/> <!-- from init -->
8 <antcall target="compile-minimal-installer"/> <!-- from init -->
[15142]9 </target>
10
[17697]11 <target name="copy-installer-files" depends="copy-main-installer-files"> <!-- from init -->
12
[16744]13 <copy todir="${basedir}/installer/classes" overwrite="true">
[17898]14 <fileset file="${basedir}/distributions/web/LICENSE.txt" />
[16744]15 </copy>
[17697]16
[19006]17 <unjar src="${mark3.home}/core/ant-tasks/greenstone/anttasks.jar" dest="${basedir}/installer/classes"/>
[17107]18 <delete dir="${basedir}/installer/classes/META-INF"/>
[17609]19
[19006]20 <unjar src="${mark3.home}/core/ant-tasks/7z-ant/7z.jar" dest="${basedir}/installer/classes"/>
[17609]21 <delete dir="${basedir}/installer/classes/META-INF"/>
22
[15142]23 </target>
24
[14982]25</project>
Note: See TracBrowser for help on using the repository browser.