source: release-kits/mark3/ant-scripts/create-distribution.xml@ 20618

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

the actual targets that retrieve the imagemagick and ghostscript binaries

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="mark3-create-distribution" default="create-distribution">
3
4 <target name="create-distribution" depends="greenstone3-create-distribution">
5 <antcall target="export-imagemagick-darwin-binaries"/>
6 <antcall target="export-ghostscript-darwin-binaries"/>
7 </target>
8
9 <target name="export-imagemagick-darwin-binaries">
10 <delete dir="distributions/web/bin/darwin/imagemagick"/>
11 <svn>
12 <export srcurl="${svn.root}/other-projects/trunk/mac-binaries/intel/imagemagick" destPath="distributions/web/gs2build/bin/darwin/imagemagick"/>
13 </svn>
14 </target>
15
16 <target name="export-ghostscript-darwin-binaries">
17 <delete dir="distributions/web/bin/darwin/ghostscript"/>
18 <svn>
19 <export srcurl="${svn.root}/other-projects/trunk/mac-binaries/intel/ghostscript" destPath="distributions/web/gs2build/bin/darwin/ghostscript"/>
20 </svn>
21 </target>
22
23</project>
Note: See TracBrowser for help on using the repository browser.