source: release-kits/lirk3/ant-scripts/create-distribution.xml@ 19935

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

it's all good stuff

File size: 890 bytes
RevLine 
[14982]1<?xml version="1.0" encoding="utf-8" ?>
2<project name="lirk3-create-distribution" default="create-distribution">
3
4 <target name="create-distribution">
5 <!-- create distribution -->
[19935]6 <antcall target="copy-compiled-to-dist"/> <!-- from init -->
[19463]7 <antcall target="insert-uninstaller"><param name="script-format" value="sh"/></antcall> <!-- from init -->
[19935]8 <antcall target="clean-user-manual"/>
9 <antcall target="clean-uninstaller"/>
[17898]10 <antcall target="strip-svn-dirs"><param name="dir" value="distributions"/></antcall> <!-- from init -->
[14982]11 </target>
12
[19935]13 <target name="clean-user-manual">
14 <copy file="distributions/web/gsdl-manuals/manuals/build/en/pdf/User_en.pdf" tofile="distributions/web/docs/manual/gs2_user_en.pdf"/>
15 <delete dir="distributions/web/gsdl-manuals"/>
[14982]16 </target>
17
[19935]18 <target name="clean-uninstaller">
19 <delete dir="distributions/web/uninstaller"/>
[14982]20 </target>
21
22</project>
Note: See TracBrowser for help on using the repository browser.