Ignore:
Timestamp:
2008-10-31T17:00:47+13:00 (15 years ago)
Author:
oranfry
Message:

fixes to lirk and mark

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/mark2/ant-scripts/create-components.xml

    r17660 r17663  
    1313    <target name="prepare-components">
    1414        <antcall target="prepare-core-component" />
     15        <antcall target="prepare-imagemagick-component" />
     16        <antcall target="prepare-ghostscript-component" />
    1517        <antcall target="prepare-sourcecode-component" />
    1618        <antcall target="prepare-sourcecode-core-component" />
     
    1921    <target name="compress-components">
    2022        <antcall target="compress-core-component" />
     23        <antcall target="compress-imagemagick-component" />
     24        <antcall target="compress-ghostscript-component" />
    2125        <antcall target="compress-sourcecode-component" />
    2226        <antcall target="compress-sourcecode-core-component" />
     
    126130    </target>
    127131
     132    <!-- ghostscript -->
     133    <target name="prepare-ghostscript-component">
     134
     135        <delete dir="components/tmp/ghostscript"/>
     136        <mkdir dir="components/tmp/ghostscript"/>
     137
     138        <copy todir="components/tmp/ghostscript" overwrite="true">
     139            <fileset dir="distributions/web/bin/darwin">
     140                <include name="ghostscript/**/*"/>
     141            </fileset>
     142        </copy>
     143               
     144        <zip destfile="components/ghostscript.comp" basedir="components/tmp/ghostscript" compress="false" includes="**/*"/>
     145    </target>
     146       
     147    <target name="compress-ghostscript-component">
     148        <sevenzip task="encode" input="components/ghostscript.comp" output="components/ghostscript.lzma" dictionnary="26"/>
     149    </target>
     150
    128151</project>
Note: See TracChangeset for help on using the changeset viewer.