source: gs2-extensions/xpdf-tools/trunk/src/packages/CASCADE-MAKE.sh@ 32256

Last change on this file since 32256 was 32249, checked in by ak19, 6 years ago

All the changes to incorporate libtiff and libjpeg into the xpdftools GS2 extension, to get libjpeg compiled up on 64 bit machines, and for both libs to be seen and used by xpdftools when this is built.

  • Property svn:executable set to *
File size: 537 bytes
Line 
1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXT_XPDFTOOLS .. $*
4
5# order of image libraries in cascade-make taken from
6# http://trac.greenstone.org/browser/gs2-extensions/ocr/trunk/packages/cmdline/CASCADE-MAKE.sh
7#PACKAGES="CMAKE LIBZ LIBPNG FREETYPE XPDFTOOLS"
8PACKAGES="CMAKE LIBZ LIBTIFF LIBPNG LIBJPEG FREETYPE XPDFTOOLS"
9
10for d in $PACKAGES ; do
11 echo " Running CASCADE-MAKE/$d.sh"
12
13 ./CASCADE-MAKE/$d.sh $*
14
15 if [ $? != 0 ] ; then
16 echo "Error encountered running CASCADE-MAKE/$d.sh"
17 exit 1
18 fi
19done
Note: See TracBrowser for help on using the repository browser.