summaryrefslogtreecommitdiffstats
path: root/recipes-multimedia/omxplayer/omxplayer_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-multimedia/omxplayer/omxplayer_git.bb')
-rw-r--r--recipes-multimedia/omxplayer/omxplayer_git.bb16
1 files changed, 11 insertions, 5 deletions
diff --git a/recipes-multimedia/omxplayer/omxplayer_git.bb b/recipes-multimedia/omxplayer/omxplayer_git.bb
index a456026..c77f858 100644
--- a/recipes-multimedia/omxplayer/omxplayer_git.bb
+++ b/recipes-multimedia/omxplayer/omxplayer_git.bb
@@ -1,16 +1,17 @@
1DESCRIPTION = "OMXPlayer is a commandline OMX player for the Raspberry Pi" 1DESCRIPTION = "OMXPlayer is a commandline OMX player for the Raspberry Pi"
2HOMEPAGE = "https://github.com/huceke/omxplayer" 2HOMEPAGE = "https://github.com/popcornmix/omxplayer"
3SECTION = "console/utils" 3SECTION = "console/utils"
4LICENSE = "GPLv2" 4LICENSE = "GPLv2"
5 5
6LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" 6LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
7 7
8DEPENDS = "libpcre libav virtual/egl boost freetype" 8DEPENDS = "libpcre libav virtual/egl boost freetype dbus"
9 9
10PR = "r1" 10PR = "r1"
11 11
12SRCREV = "dae98a8bba9dc7410b0621134f6ebdb406adb1bd" 12SRCREV = "c0dd9502ed2c43c487674939195c69680f3d98b0"
13SRC_URI = "git://github.com/huceke/omxplayer.git;protocol=git;branch=master \ 13
14SRC_URI = "git://github.com/popcornmix/omxplayer.git;protocol=git;branch=master \
14 file://0001-Remove-Makefile.include-which-includes-hardcoded.patch \ 15 file://0001-Remove-Makefile.include-which-includes-hardcoded.patch \
15 file://0002-Libraries-and-headers-from-ffmpeg-are-installed-in-u.patch \ 16 file://0002-Libraries-and-headers-from-ffmpeg-are-installed-in-u.patch \
16 file://0003-Remove-strip-step-in-Makefile.patch" 17 file://0003-Remove-strip-step-in-Makefile.patch"
@@ -37,6 +38,8 @@ export INCLUDES = "-isystem${STAGING_DIR_HOST}/usr/include \
37 -isystem${STAGING_DIR_HOST}/usr/include/interface/vcos/pthreads \ 38 -isystem${STAGING_DIR_HOST}/usr/include/interface/vcos/pthreads \
38 -isystem${STAGING_DIR_HOST}/usr/include/freetype2 \ 39 -isystem${STAGING_DIR_HOST}/usr/include/freetype2 \
39 -isystem${STAGING_DIR_HOST}/usr/include/interface/vmcs_host/linux \ 40 -isystem${STAGING_DIR_HOST}/usr/include/interface/vmcs_host/linux \
41 -isystem${STAGING_DIR_HOST}/usr/include/dbus-1.0 \
42 -isystem${STAGING_DIR_HOST}/usr/lib/dbus-1.0/include \
40 " 43 "
41 44
42# Install in ${D} 45# Install in ${D}
@@ -52,9 +55,12 @@ do_compile() {
52 55
53do_install() { 56do_install() {
54 oe_runmake dist 57 oe_runmake dist
58 mkdir -p ${D}/usr/share/fonts/truetype/freefont/
59 install ${S}/fonts/* ${D}/usr/share/fonts/truetype/freefont/
55} 60}
56 61
57FILES_${PN} = "${bindir}/omxplayer* \ 62FILES_${PN} = "${bindir}/omxplayer* \
58 ${libdir}/omxplayer/lib*${SOLIBS}" 63 ${libdir}/omxplayer/lib*${SOLIBS} \
64 /usr/share/fonts"
59 65
60FILES_${PN}-dev += "${libdir}/omxplayer/*.so" 66FILES_${PN}-dev += "${libdir}/omxplayer/*.so"