Changeset 17710 for release-kits


Ignore:
Timestamp:
2008-11-05T16:27:21+13:00 (15 years ago)
Author:
max
Message:

Changing the permissions of the right folders at the right time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/mark2/installer/build.xml

    r17663 r17710  
    4848        <chmod dir="${installDir}" includes="*.sh,*.bash" perm="775"/>
    4949        <chmod dir="${installDir}/bin/darwin" includes="*" perm="775"/>
    50         <chmod dir="${installDir}/bin/darwin/imagemagick" includes="*" perm="775"/>
    51         <chmod dir="${installDir}/bin/darwin/ghostscript" includes="*" perm="775"/>
    5250        <chmod dir="${installDir}/bin" includes="*" perm="775"/>
    5351        <chmod dir="${installDir}/cgi-bin" includes="*" perm="775"/>
     
    119117    </target>
    120118
    121 
    122 
    123119    <!-- Source -->
    124120    <target name="Installing Source Code" depends="">
     
    129125        <unzip src="${basedir}/sourcecode.comp" dest="${installDir}"/>
    130126        <delete file="sourcecode.comp"/>
    131 
    132127    </target>
    133128
     129    <!-- ImageMagick -->
     130    <target name="Installing ImageMagick" depends="">
     131        <echo message="Installing ImageMagick"/>
     132        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
     133        <sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/>
     134        <delete file="imagemagick.lzma"/>
     135        <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/bin/darwin" />
     136        <delete file="imagemagick.comp"/>
     137        <chmod dir="${installDir}/bin/darwin/imagemagick" includes="*" perm="775"/>
     138    </target>
     139
     140    <!-- Ghostscript -->
     141    <target name="Installing Ghostscript" depends="">
     142        <echo message="Installing Ghostscript"/>
     143        <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
     144        <sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/>
     145        <delete file="ghostscript.lzma"/>
     146        <unzip src="${basedir}/ghostscript.comp" dest="${installDir}/bin/darwin" />
     147        <delete file="ghostscript.comp"/>
     148        <chmod dir="${installDir}/bin/darwin/ghostscript" includes="*" perm="775"/>
     149    </target>
     150
     151
     152
    134153</project>
Note: See TracChangeset for help on using the changeset viewer.