Commit cdfa21b0 authored by Floris Bos's avatar Floris Bos Committed by Peter Korsgaard
Browse files

qt5base: install bundled fonts to target



If not using font-config, Qt 5 offers a set of standard fonts to
use instead. Install these to target.

Signed-off-by: default avatarFloris Bos <bos@je-eigen-domein.nl>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 6cd7b60f
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -172,9 +172,17 @@ define QT5BASE_INSTALL_TARGET_PLUGINS
	fi
endef

define QT5BASE_INSTALL_TARGET_FONTS
	if [ -d $(STAGING_DIR)/usr/lib/fonts/ ] ; then \
		mkdir -p $(TARGET_DIR)/usr/lib/fonts ; \
		cp -dpfr $(STAGING_DIR)/usr/lib/fonts/* $(TARGET_DIR)/usr/lib/fonts ; \
	fi
endef

define QT5BASE_INSTALL_TARGET_CMDS
	$(QT5BASE_INSTALL_TARGET_LIBS)
	$(QT5BASE_INSTALL_TARGET_PLUGINS)
	$(QT5BASE_INSTALL_TARGET_FONTS)
endef

$(eval $(generic-package))