Mercurial > dottes
view makeAll.sh @ 789:63134d08a7ca build-default-298
Add note on Thomas Hardy to Enrico.
author | Jim Hague <jim.hague@acm.org> |
---|---|
date | Thu, 26 Apr 2018 12:59:18 +0100 |
parents | d6f1f2b3bd01 |
children | 1a838d8dca2a |
line wrap: on
line source
#!/bin/bash # # Build all forms of the Booke. # # Arguments are the names of the bookes to build. If a name is # prefixed '-', then do not include that section in the Bumper Booke. if [[ $# -lt 1 ]]; then echo "Usage: makeAll.sh <booke dir name> [<booke dir name> ...]" exit 1 fi makeABooke() { # Print graphics. ./makeGraphics.sh "$1" # Normal graphics printed output. ./makeBookeTunePages.sh "$1" ./makeBooke.sh A4 "$1" ./makeBooke.sh Nook "$1" # Compact graphics printed output. ./makeBookeTunePages.sh --use-compact "$1" ./makeBooke.sh A5 "$1" ./makeBooklet.sh "$1" # Web output. ./makeWebGraphics.sh "$1" ./makeWebAudio.sh "$1" ./makeWeb.sh "$1" "$1" "$2" } makeATransposedBooke() { # Print graphics. ./makeGraphics.sh "$1" # Normal graphics printed output. ./makeBookeTunePages.sh "$1" ./makeBooke.sh A4 "$1" ./makeBooke.sh Nook "$1" # Compact graphics printed output. ./makeBookeTunePages.sh --use-compact "$1" ./makeBooke.sh A5 "$1" ./makeBooklet.sh "$1" # Web output. Uses audio from main booke. ./makeWebGraphics.sh "$1" ./makeWeb.sh "$1" "$2" "$3" } makeASingleBooke() { makeABooke $1 ./makeCello.sh $1 makeATransposedBooke $1-Cello $1 cello ./makeHornInF.sh $1 makeATransposedBooke $1-HornInF $1 "horn in F" ./makeAltoRecorderCFingering.sh $1 makeATransposedBooke $1-AltoRecorderCFingering $1 "alto recorder, C fingering" } makeBumperBooke() { # This can only be used once all the other Bookes have been built. ./makeBooke.sh A4 "$@" ./makeBooke.sh A5 "$@" ./makeBooklet.sh "Bumper" } declare buildBookes declare bumperBookes for booke in "$@" do if [[ ${booke:0:1} = "-" ]]; then booke=${booke/#-/} else bumperBookes+=("$booke") fi buildBookes+=("$booke") done for booke in "${buildBookes[@]}" do makeASingleBooke $booke done if [[ ${#bumperBookes[@]} -gt 1 ]]; then makeBumperBooke "${bumperBookes[@]}" cp Bumper*.pdf ./web fi