forked from CryHavoc/dottes
Add instrument name into title page for transpositions.
This commit is contained in:
parent
77b48b734c
commit
204de8894f
|
@ -47,6 +47,12 @@ if [ -r $booke/intro.txt ]; then
|
||||||
else
|
else
|
||||||
touch $builddir/intro.txt
|
touch $builddir/intro.txt
|
||||||
fi
|
fi
|
||||||
|
rm $builddir/instrument.txt
|
||||||
|
if [ -r $booke/instrument.txt ]; then
|
||||||
|
cp $booke/instrument.txt $builddir
|
||||||
|
else
|
||||||
|
touch $builddir/instrument.txt
|
||||||
|
fi
|
||||||
cp dottes.tex.a4header $builddir/$output
|
cp dottes.tex.a4header $builddir/$output
|
||||||
cat dottes.tex.intro >> $builddir/$output
|
cat dottes.tex.intro >> $builddir/$output
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,12 @@ if [ -r $booke/intro.txt ]; then
|
||||||
else
|
else
|
||||||
touch $builddir/intro.txt
|
touch $builddir/intro.txt
|
||||||
fi
|
fi
|
||||||
|
rm $builddir/instrument.txt
|
||||||
|
if [ -r $booke/instrument.txt ]; then
|
||||||
|
cp $booke/instrument.txt $builddir
|
||||||
|
else
|
||||||
|
touch $builddir/instrument.txt
|
||||||
|
fi
|
||||||
cp dottes.tex.a5header $builddir/$output
|
cp dottes.tex.a5header $builddir/$output
|
||||||
cat dottes.tex.intro >> $builddir/$output
|
cat dottes.tex.intro >> $builddir/$output
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,8 @@ mkdir -p $outdir
|
||||||
# Copy book component items.
|
# Copy book component items.
|
||||||
cp $booke/*.txt $outdir
|
cp $booke/*.txt $outdir
|
||||||
|
|
||||||
|
echo "Cello" > $outdir/instrument.txt
|
||||||
|
|
||||||
find $booke -name "*.abc" | sort |
|
find $booke -name "*.abc" | sort |
|
||||||
while read filename
|
while read filename
|
||||||
do
|
do
|
||||||
|
|
|
@ -17,6 +17,8 @@ mkdir -p $outdir
|
||||||
# Copy book component items.
|
# Copy book component items.
|
||||||
cp $booke/*.txt $outdir
|
cp $booke/*.txt $outdir
|
||||||
|
|
||||||
|
echo "Horn in F" > $outdir/instrument.txt
|
||||||
|
|
||||||
find $booke -name "*.abc" | sort |
|
find $booke -name "*.abc" | sort |
|
||||||
while read filename
|
while read filename
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in New Issue