scores-tinwhistle/book/build

28 lines
595 B
Bash
Executable File

#!/bin/sh
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
LIB=$DIR/../../lib
STYLESHEET=$DIR/book.sly
# In case tinwhistle.ily is included in file
#+ add it to the search path
TINWHISTLE_DIR=$LIB/tinwhistle/
# Options by this script
OPTIONS="-dno-strip-output-dir -dno-point-and-click"
# Process
PROCESS="lilypond -dinclude-settings=$STYLESHEET -I $TINWHISTLE_DIR $OPTIONS"
# Execute
lilypond-book -P"${PROCESS}" --output=tex --pdf book.lytex
# PDF
cd $DIR/tex
pdflatex book.tex
cd $DIR
cp $DIR/tex/book.pdf $DIR/book.pdf