From 1c696a95f16337e4168a045479a386194d32e18f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Mennetrier?= Date: Wed, 5 Mar 2014 10:04:28 +0100 Subject: [PATCH] omxplayer: Install fonts directory in datadir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8a31cad4f1e84083729c4400526d21d2e573834e Signed-off-by: Sébastien Mennetrier Signed-off-by: Andrei Gherzan --- recipes-multimedia/omxplayer/omxplayer_git.bb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/recipes-multimedia/omxplayer/omxplayer_git.bb b/recipes-multimedia/omxplayer/omxplayer_git.bb index a456026..7492f62 100644 --- a/recipes-multimedia/omxplayer/omxplayer_git.bb +++ b/recipes-multimedia/omxplayer/omxplayer_git.bb @@ -52,9 +52,12 @@ do_compile() { do_install() { oe_runmake dist + mkdir -p ${D}${datadir}/fonts/truetype/freefont/ + install ${S}/fonts/* ${D}${datadir}/fonts/truetype/freefont/ } FILES_${PN} = "${bindir}/omxplayer* \ - ${libdir}/omxplayer/lib*${SOLIBS}" + ${libdir}/omxplayer/lib*${SOLIBS} \ + ${datadir}/fonts" FILES_${PN}-dev += "${libdir}/omxplayer/*.so"