2025-01-17 08:45:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo -en "#import \"/src/song.typ\": * \n" >build/songs.typ
|
|
|
|
|
|
|
|
for t in src/songs/*.typ; do
|
|
|
|
base="$(basename $t .typ)"
|
|
|
|
title="$(grep -oP '^\W*title\W*=\W*"\K.*(?="\W*$$)' src/songs/$base.ly)"
|
|
|
|
|
2025-01-17 10:14:15 +00:00
|
|
|
echo -en "#song(\"$title\", \"$base\")\n#pagebreak()\n" >>build/songs.typ
|
2025-01-17 08:45:29 +00:00
|
|
|
done
|