Changeset 17953


Ignore:
Timestamp:
2008-11-27T17:17:14+13:00 (15 years ago)
Author:
oranfry
Message:

changes for the source release kit

Location:
release-kits/shared
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/ant-scripts/init.xml

    r17952 r17953  
    383383    </target>
    384384
     385    <!-- create the zipped up binary release from the web distribution -->
     386    <target name="compress-zipped-binary-release">
     387        <mkdir dir="products"/>
     388        <if>
     389            <bool><equals arg1="zip" arg2="${format}"/></bool>
     390            <zip destfile="products/Greenstone-${version}-${os.suffix}-binary.zip" basedir="distributions/web" compress="true"/>
     391            <else>
     392            <tar destfile="products/Greenstone-${version}-${os.suffix}-binary.tar.gz" basedir="distributions/web" compression="gzip"/>
     393            </else>
     394        </if>
     395    </target>
     396
     397    <target name="export-gsdl-gli">
     398        <delete dir="${dest}"/>
     399        <svn>
     400            <export srcurl="${svn.root}/gsdl/${branch.path}" destPath="${dest}"/>
     401            <export srcurl="${svn.root}/gli/${branch.path}" destPath="${dest}/gli"/>
     402        </svn>
     403    </target>
     404
    385405</project>
  • release-kits/shared/greenstone2/ant-scripts/rk2-targets.xml

    r17898 r17953  
    2424
    2525    <target name="insert-export-to-cd-package">
    26         <mkdir dir="distributions/web/bin/windows"/>
    27         <get src="http://greenstone.org/release-snapshots/server.exe" dest="${basedir}/distributions/web/bin/windows/server.exe"/>
    28         <get src="http://svn.greenstone.org/other-projects/trunk/winbin/bin/Setup.exe" dest="${basedir}/distributions/web/bin/windows/Setup.exe"/>
    29         <get src="http://svn.greenstone.org/other-projects/trunk/winbin/bin/gssetup.exe" dest="${basedir}/distributions/web/bin/windows/gssetup.exe"/>
     26        <mkdir dir="${gsdl.basedir}/bin/windows"/>
     27        <get src="http://greenstone.org/release-snapshots/server.exe" dest="${gsdl.basedir}/bin/windows/server.exe"/>
     28        <get src="http://svn.greenstone.org/other-projects/trunk/winbin/bin/Setup.exe" dest="${gsdl.basedir}/bin/windows/Setup.exe"/>
     29        <get src="http://svn.greenstone.org/other-projects/trunk/winbin/bin/gssetup.exe" dest="${gsdl.basedir}/bin/windows/gssetup.exe"/>
    3030    </target>
    3131
Note: See TracChangeset for help on using the changeset viewer.