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

Last change on this file was 30675, checked in by davidb, 8 years ago

Additional packages, and updates to existing ones after testing on MacOS El Capitain

  • Property svn:executable set to *
File size: 606 bytes
RevLine 
[23291]1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXTIMAGEMAGICK .. $*
4
[27720]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)
[28270]7
[30675]8#for d in LIBZ LIBBZ2 JPEG TIFF GS LIBPNG JPEG2000 IMAGEMAGICK ; do
9for d in LIBICONV GETTEXT PKG-CONFIG LIBZ LIBBZ2 LIBXML JPEG TIFF LIBPNG JPEG2000 GS IMAGEMAGICK ; do
[23291]10 echo " Running CASCADE-MAKE/$d.sh"
11
12 ./CASCADE-MAKE/$d.sh $*
13
14 if [ $? != 0 ] ; then
15 echo "Error encountered running CASCADE-MAKE/$d.sh"
16 exit 1
17 fi
18done
Note: See TracBrowser for help on using the repository browser.