source: release-kits/lirk3/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: 1016 bytes
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"><param name="java.os" value="linux"/></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 <copy todir="${basedir}/installer/classes" overwrite="true">
14 <fileset file="${basedir}/distributions/web/LICENSE.txt"/>
15 </copy>
16
17 <unjar src="${lirk3.home}/core/ant-tasks/greenstone/anttasks.jar" dest="${basedir}/installer/classes"/>
18 <delete dir="${basedir}/installer/classes/META-INF"/>
19
20 <unjar src="${lirk3.home}/core/ant-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.