fontconfig: add kodi font folder to a list

fixes SSA/ASS subtitles (*.ass) with custom fonts
https://forum.libreelec.tv/thread/10874-custom-fonts-for-subtitles-issue/?postID=72234
This commit is contained in:
Peter Vicman 2017-12-08 13:52:26 +01:00
parent 8fcf7b5cb2
commit 00ece3b023
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<dir>/storage/.kodi/media/Fonts</dir>
</fontconfig>

View File

@ -48,4 +48,7 @@ pre_configure_target() {
post_makeinstall_target() {
rm -rf $INSTALL/usr/bin
mkdir -p $INSTALL/etc/fonts/conf.d
cp $PKG_DIR/conf.d/*.conf $INSTALL/etc/fonts/conf.d
}