source: release-kits/wirk2/ant-scripts/compile.xml@ 18531

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

don't unzip the non-existent windows gdbm package

File size: 3.5 KB
RevLine 
[15023]1<?xml version="1.0" encoding="utf-8" ?>
[16087]2<project name="wirk2-compile" default="compile">
[15023]3
4 <target name="compile">
[16745]5 <antcall target="checkout-gsdl-gli" />
[17898]6 <antcall target="gsdl-set-version-numbers"><param name="gsdl.basedir" value="${basedir}/compiled"/></antcall>
[16745]7 <antcall target="unzip-packages" />
8 <antcall target="get-winbin" />
[17978]9 <antcall target="insert-windows-perl"><param name="gsdl.basedir" value="compiled"/></antcall>
[16745]10 <antcall target="compile-c-code" />
[17268]11 <antcall target="compile-uninstaller" /> <!-- from rk2-targets -->
[16745]12 <antcall target="build-demo-collection" />
[15023]13 </target>
14
[16458]15 <target name="checkout-gsdl-gli">
[16745]16 <svn>
[17898]17 <checkout url="${svn.root}/gsdl/${branch.path}" destPath="${basedir}/compiled"/>
18 <checkout url="${svn.root}/gli/${branch.path}" destPath="${basedir}/compiled/gli"/>
[16745]19 </svn>
[15023]20 </target>
21
[16087]22 <target name="unzip-packages">
[17898]23 <unzip src="${basedir}/compiled/common-src/packages/windows/crypt/crypt.zip" dest="${basedir}/compiled/common-src/packages/windows/crypt"/>
24 <unzip src="${basedir}/compiled/common-src/packages/windows/expat/expat.zip" dest="${basedir}/compiled/common-src/packages/windows/expat"/>
25 <unzip src="${basedir}/compiled/common-src/packages/windows/stlport/stlport.zip" dest="${basedir}/compiled/common-src/packages/windows/stlport"/>
26 <unzip src="${basedir}/compiled/common-src/indexers/packages/windows/iconv/iconv.zip" dest="${basedir}/compiled/common-src/indexers/packages/windows/iconv"/>
[18497]27 <untar src="${basedir}/compiled/common-src/packages/sqlite/sqlite-amalgamation-3.5.9.tar.gz" dest="${basedir}/compiled/common-src/packages/sqlite" compression="gzip"/>
[15023]28 </target>
[16087]29
30 <target name="get-winbin">
[16745]31 <if>
[17898]32 <bool><not><available file="${basedir}/compiled/bin/windows"/></not></bool>
33 <svn><export srcUrl="${svn.root}/other-projects/trunk/winbin/bin" destPath="${basedir}/compiled/bin/windows" revision="${branch.revision}"/></svn>
[16087]34 </if>
[15023]35 </target>
36
[16087]37 <target name="compile-c-code">
[17898]38 <copy file="${wirk2.home}/resources/compile.bat" todir="${basedir}/compiled" overwrite="true"/>
39 <exec dir="${basedir}/compiled" executable="${basedir}/compiled/compile.bat" />
40 <move file="${basedir}/compiled/server.exe" todir="${basedir}/compiled/bin/windows"/>
41 <move todir="${basedir}/compiled/bin/windows">
42 <fileset dir="${basedir}/compiled/cgi-bin" includes="library.exe,oaiserver.exe"/>
[16745]43 </move>
[16087]44 </target>
45
46 <target name="build-demo-collection">
[16745]47 <!-- the envs on these execs simulate the environment when you run setup.bat -->
[17898]48 <exec dir="${basedir}/compiled" executable="${basedir}/compiled/bin/windows/perl/bin/perl.exe">
[16745]49 <arg line="bin\script\import.pl --removeold demo"/>
[17898]50 <env key="GSDLHOME" value="${basedir}/compiled"/>
51 <env key="GSDLCOLLECTDIR" value="${basedir}/compiled/collect"/>
[16745]52 <env key="GSDLOS" value="windows"/>
[17898]53 <env key="PATH" value="${basedir}\compiled\bin\windows\perl\bin;${basedir}\compiled\bin\windows;${basedir}\compiled\bin\script"/>
[16745]54 </exec>
[17898]55 <exec dir="${basedir}/compiled" executable="${basedir}/compiled/bin/windows/perl/bin/perl.exe">
[16745]56 <arg line="bin\script\buildcol.pl --removeold demo"/>
[17898]57 <env key="GSDLHOME" value="${basedir}/compiled"/>
58 <env key="GSDLCOLLECTDIR" value="${basedir}/compiled/collect"/>
[16745]59 <env key="GSDLOS" value="windows"/>
[17898]60 <env key="PATH" value="${basedir}\compiled\bin\windows\perl\bin;${basedir}\compiled\bin\windows;${basedir}\compiled\bin\script"/>
[16745]61 </exec>
62
[17898]63 <delete dir="${basedir}/compiled/collect/demo/index"/>
64 <move file="${basedir}/compiled/collect/demo/building" tofile="${basedir}/compiled/collect/demo/index"/>
[15023]65 </target>
66
[16194]67</project>
Note: See TracBrowser for help on using the repository browser.