mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
lilypond-with-fonts: fix build of some fonts
This commit is contained in:
parent
2f1147402b
commit
dba7b7f4bf
@ -17,7 +17,11 @@ let
|
|||||||
local fontsdir="$out/share/lilypond/${lilypond.version}/fonts"
|
local fontsdir="$out/share/lilypond/${lilypond.version}/fonts"
|
||||||
|
|
||||||
install -m755 -d "$fontsdir/otf"
|
install -m755 -d "$fontsdir/otf"
|
||||||
for font in {otf,supplementary-fonts}/**.{o,t}tf; do
|
|
||||||
|
shopt -s globstar
|
||||||
|
|
||||||
|
for font in {otf,supplementary-fonts,supplementary-files}/**/*.{o,t}tf; do
|
||||||
|
echo $font
|
||||||
install -Dt "$fontsdir/otf" -m755 "$font"
|
install -Dt "$fontsdir/otf" -m755 "$font"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user