Changeset 17711 for release-kits


Ignore:
Timestamp:
2008-11-05T16:27:30+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/mark3/installer/build.xml

    r17663 r17711  
    3939        <chmod dir="${installDir}/bin" includes="*" perm="775"/>
    4040        <chmod dir="${installDir}/gs2build/bin/darwin" includes="*" perm="775"/>
    41         <chmod dir="${installDir}/gs2build/bin/darwin/imagemagick" includes="*" perm="775"/>
    42         <chmod dir="${installDir}/gs2build/bin/darwin/ghostscript" includes="*" perm="775"/>
    4341        <chmod dir="${installDir}/gs2build/bin/script" includes="**/*" perm="775"/>
    4442        <chmod dir="${installDir}/gli" includes="*.sh" perm="775"/>
     
    148146    </target>
    149147
     148        <!-- ImageMagick -->
     149        <target name="Installing ImageMagick" depends="">
     150                <echo message="Installing ImageMagick"/>
     151                <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="imagemagick.lzma"/></patternset></unzip>
     152                <sevenzip task="decode" input="${basedir}/imagemagick.lzma" output="${basedir}/imagemagick.comp"/>
     153                <delete file="imagemagick.lzma"/>
     154                <unzip src="${basedir}/imagemagick.comp" dest="${installDir}/gs2build/bin/darwin" />
     155                <delete file="imagemagick.comp"/>
     156                <chmod dir="${installDir}/gs2build/bin/darwin/imagemagick" includes="*" perm="775"/>
     157        </target>
     158       
     159        <!-- Ghostscript -->
     160        <target name="Installing Ghostscript" depends="">
     161                <echo message="Installing Ghostscript"/>
     162                <unzip src="${antinstaller.jar}" dest="${basedir}"><patternset><include name="ghostscript.lzma"/></patternset></unzip>
     163                <sevenzip task="decode" input="${basedir}/ghostscript.lzma" output="${basedir}/ghostscript.comp"/>
     164                <delete file="ghostscript.lzma"/>
     165                <unzip src="${basedir}/ghostscript.comp" dest="${installDir}/gs2build/bin/darwin" />
     166                <delete file="ghostscript.comp"/>
     167                <chmod dir="${installDir}/gs2build/bin/darwin/ghostscript" includes="*" perm="775"/>
     168        </target>
     169
     170
    150171</project>
Note: See TracChangeset for help on using the changeset viewer.