source: release-kits/lirk2/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: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="lirk2-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="${lirk2.home}/ant-scripts/tasks/greenstone/anttasks.jar" dest="${basedir}/installer/classes"/>
18 <delete dir="${basedir}/installer/classes/META-INF"/>
19
20 <unjar src="${lirk2.home}/ant-scripts/tasks/7z-ant/7z.jar" dest="${basedir}/installer/classes"/>
21 <delete dir="${basedir}/installer/classes/META-INF"/>
22
23 <unjar src="${lirk2.home}/lib/crypt.jar" dest="${basedir}/installer/classes"/>
24 <delete dir="${basedir}/installer/classes/META-INF"/>
25
26 </target>
27
28</project>
Note: See TracBrowser for help on using the repository browser.