source: gs2-extensions/imagemagick/trunk/src/packages/CASCADE-MAKE/IMAGEMAGICK.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: 1.3 KB
Line 
1#!/bin/bash
2
3package=ImageMagick
4version=-6.8.2-9
5
6progname=$0
7
8source ../cascade-make/lib/cascade-lib.bash GEXTIMAGEMAGICK ../.. $*
9
10prefix=$GEXTIMAGEMAGICK_INSTALLED
11
12export CFLAGS="$CFLAGS -I$GEXTIMAGEMAGICK_INSTALLED/include"
13export CPPFLAGS="$CPPFLAGS -I$GEXTIMAGEMAGICK_INSTALLED/include"
14export CXXFLAGS="$CXXFLAGS -I$GEXTIMAGEMAGICK_INSTALLED/include"
15export LDFLAGS="$LDFLAGS -L$GEXTIMAGEMAGICK_INSTALLED/lib"
16export LD_LIBRARY_PATH="$GEXTIMAGEMAGICK_INSTALLED/lib"
17
18# If on darwin, check if clang exists. If so, use that as CC, in place of gcc
19# use command -v instead of which to check if a program exists.
20# http://stackoverflow.com/questions/592620/check-if-a-program-exists-from-a-bash-script
21if [ "x$GSDLOS" = "xdarwin" ] ; then
22 if command -v clang > /dev/null 2>&1; then
23 echo "Found clang compiler. Switching CC to clang"
24 CROSSCONFIGURE_VARS="CC=clang"
25 fi
26fi
27
28# it's going to generate the ghostscript binary not ghostscript library
29# so --without-gslib
30opt_run_untar $force_untar $auto_untar $package $version
31opt_run_configure $force_config $auto_config $package $version $prefix --without-gslib
32
33opt_run_make $compile $package $version
34opt_run_make $install $package $version "install"
35opt_run_make $clean $package $version "clean"
36opt_run_make $distclean $package $version "distclean"
37
38opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.