Build script working with spaces again,

New Side Score: Massacre of Glencoe
This commit is contained in:
Eric Teunis de Boone 2019-08-13 14:50:14 +02:00
parent a69bc52462
commit a1a6b13fab
4 changed files with 93 additions and 1 deletions

View File

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 6/8
}
confTempo = {
\tempo 4. = 45
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Massacre of Glencoe"
meter = "Air"

View File

@ -0,0 +1,37 @@
% 6/8 Massacre of Glencoe
% Side
\version "2.18.2"
composerSide = ""
arrangerSide = ""
sideglobal = {
\sixteenthBeaming
}
% Music
snareA = \drummode {
d8:32( |
g8.) d16 g8 d4.:32( |
d8.) g16 d8 d4.:32( |
d8.) g16 d8 \flam d4 g8 |
d4.:32( d4)
d8:32( |
g8.) d16 g8 d4.:32( |
d8.) g16 d8 d4.:32( |
d8.) g16 d8 \flam g8. d16 g8 |
d4.:32( d4)
}
snareB = \drummode {
d8:32( |
g16.) d32-> g16. g32 d8-> g16. d32-> g16. g32 d8-> |
g16. d32-> g16. g32 d8-> d4.:32( |
d8) g d d4.:32(\f\> |
d8) g\p d g4
d8:32( |
g16.)\mf d32-> g16. g32 d8-> g16. d32-> g16. g32 d8-> |
g16. d32-> g16. g32 d8-> d4.:32( |
d8.) g16 d8 g8. d16 g8 |
d4.:32( d4)
}

View File

@ -0,0 +1,37 @@
\version "2.18.2"
\include "lilydrum.ly"
\include "./config.ily"
\include "./notes.side.ily"
\score {
\new PipeBandDrumStaff {
\global
\sideglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\part \line
}
\break
\repeat volta 2 {
\part \line
}
}%Format
\new DrumVoice = "side" {
\snareA s8
\snareB s8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentSide
composer = \composerSide
arranger = \arrangerSide
}
}

2
build
View File

@ -23,4 +23,4 @@ BAGPIPELY="$LIB/bagpipe.ly/"
OPTIONS="-dno-strip-output-dir -dno-point-and-click -dpaper-size=\"a4landscape\""
# Execute
lilypond -dinclude-settings=$STYLESHEET -I $LILYDRUM -I $BAGPIPELY $OPTIONS -dpreview $@
lilypond -dinclude-settings=$STYLESHEET -I $LILYDRUM -I $BAGPIPELY $OPTIONS -dpreview "$@"