source: gs2-extensions/imagemagick/trunk/src/packages/CASCADE-MAKE.sh@ 28270

Last change on this file since 28270 was 28270, checked in by sjm84, 11 years ago

Imagemagick now also compiles up ghostscript to generate the ghostscript binary in linux/bin. Ghostscript is not included in lsb.

  • Property svn:executable set to *
File size: 500 bytes
Line 
1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXTIMAGEMAGICK .. $*
4
5# Need to compile up JPEG before TIFF, since TIFF is dependent on libjpeg.so
6# (else it will find a system libjpeg.so, which will be libjpeg.so.62 and not the included libjpeg.so.8)
7
8for d in LIBZ LIBBZ2 JPEG TIFF GS LIBPNG JPEG2000 IMAGEMAGICK ; do
9 echo " Running CASCADE-MAKE/$d.sh"
10
11 ./CASCADE-MAKE/$d.sh $*
12
13 if [ $? != 0 ] ; then
14 echo "Error encountered running CASCADE-MAKE/$d.sh"
15 exit 1
16 fi
17done
Note: See TracBrowser for help on using the repository browser.