| | 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 | |
|---|