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

Last change on this file since 32257 was 32257, checked in by sjm84, 6 years ago

Correcting the folder structure of xpdf-tools once extracted.

  • Property svn:executable set to *
File size: 763 bytes
RevLine 
[32227]1#!/bin/bash
2
3source devel.bash
4
5for d in packages ; do
6 echo "Running $d/CASCADE-MAKE.sh"
7
8 (cd $d ; ./CASCADE-MAKE.sh $*)
9
10 if [ $? != 0 ] ; then
11 echo "Error encountered running $d/CASCADE-MAKE.sh"
12 exit 1
13 fi
14done
15
[32257]16# makedist: just put the files and folder we want in the distribution tarball
17# Note that any directories specified for files in the whitelist will also go in
18# maintaining directory structure. So "linux/bin/pdf*" will end up in the final
19# extracted xpdf-tools folder, not just pdf*.
[32253]20if [ $makedist = "1" ] ; then
[32257]21 # See xpdftools' README: licencing files and xpdf-tools manpages
22 # need to be redistributed with xpdf-tools binaries
23 toplevel_make_dist $GSDLOS $GSDLOS/bin/pdf* $GSDLOS/man licence-files/*
[32227]24fi
Note: See TracBrowser for help on using the repository browser.