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

Last change on this file since 30675 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: 875 bytes
Line 
1#!/bin/bash
2
3package=tiff
4version=-3.9.4
5
6progname=$0
7
8source ../cascade-make/lib/cascade-lib.bash GEXTIMAGEMAGICK ../.. $*
9
10prefix=$GEXTIMAGEMAGICK_INSTALLED
11
12# Need to configure with jpeg-8 library and include directories,
13# else configure of tiff will look for libjpeg.so.62 and end up compiling against that
14# http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=18566
15opt_run_untar $force_untar $auto_untar $package $version
16opt_run_configure $force_config $auto_config $package $version $prefix --with-jpeg-lib-dir=$GEXTIMAGEMAGICK_INSTALLED/lib --with-jpeg-include-dir=$GEXTIMAGEMAGICK_INSTALLED/include --disable-shared
17
18opt_run_make $compile $package $version
19opt_run_make $install $package $version "install"
20opt_run_make $clean $package $version "clean"
21opt_run_make $distclean $package $version "distclean"
22
23opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.