forked from mirrors/nixpkgs
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 a new issue