diff options
author | 2014-03-05 10:04:28 +0100 | |
---|---|---|
committer | 2014-03-05 17:45:07 +0200 | |
commit | 1c696a95f16337e4168a045479a386194d32e18f (patch) | |
tree | dde18d369c897d42ae5ea2af99867e39c430d95e | |
parent | 0a3f86f21aabe1e8d2605f87b31f75092cc4beb1 (diff) | |
download | meta-raspberrypi-dora.tar.gz meta-raspberrypi-dora.tar.bz2 meta-raspberrypi-dora.zip |
omxplayer: Install fonts directory in datadirdora
Change-Id: I8a31cad4f1e84083729c4400526d21d2e573834e
Signed-off-by: Sébastien Mennetrier <s.mennetrier@innotis.org>
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
-rw-r--r-- | recipes-multimedia/omxplayer/omxplayer_git.bb | 5 |
1 files changed, 4 insertions, 1 deletions
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" |