source: gs2-extensions/music-stand/trunk/CASCADE-MAKE.sh@ 22129

Last change on this file since 22129 was 22129, checked in by davidb, 14 years ago

First pass at setting up necessary packages, needed for Evince to compile

  • Property svn:executable set to *
File size: 443 bytes
Line 
1#!/bin/bash
2
3source cascade-make/lib/cascade-lib.bash
4
5if [ ! -e $GEXTVIDEO_INSTALLED ] ; then
6 echo "Creating $GEXTVIDEO_INSTALLED"
7 mkdir $GEXTVIDEO_INSTALLED
8fi
9
10dirlist="runtime-srcpack"
11
12for d in $dirlist ; do
13 echo "Running $d/CASCADE-MAKE.sh $*"
14
15 (cd $d ; ./CASCADE-MAKE.sh $*)
16
17 if [ $? != 0 ] ; then
18 echo "Error encountered running $d/CASCADE-MAKE.sh"
19 exit 1
20 fi
21done
22
23
24if [ $install = "1" ] ; then
25 cat README.txt
26fi
Note: See TracBrowser for help on using the repository browser.