blob: 74fa29a2bc67ecb9e732c5983cecd7fef2b2ddcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
SUMMARY = "VA-API support to GStreamer"
DESCRIPTION = "gstreamer-vaapi consists of a collection of VA-API \
based plugins for GStreamer and helper libraries: `vaapidecode', \
`vaapiconvert', and `vaapisink'."
LICENSE = "LGPLv2.1+"
LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
DEPENDS = "gstreamer gst-plugins-base gst-plugins-bad libva"
# 0.3.8 tag
SRCREV = "6ec4c2252a4aa706cd8631cb1083828485b9df9a"
PV = "0.3.8+git${SRCPV}"
PR = "r0"
SRC_URI = "git://gitorious.org/vaapi/gstreamer-vaapi.git"
SRC_URI[md5sum] = "729d75f21df79114a8c81d896489e5ad"
SRC_URI[sha256sum] = "f1770c4537f1615701dbc845eee5732fbb1036b3acafbc7488e551fab334a31d"
S = "${WORKDIR}/git"
inherit autotools pkgconfig gtk-doc
EXTRA_OECONF = "--disable-ffmpeg"
do_configure_prepend() {
# DEBUG: Executing shell function do_configure
# ln: target `m4/' is not a directory: No such file or directory
# cp: cannot create regular file `m4/': Not a directory
# (should be fixed in autotools.bbclass)
mkdir --parents ${B}/m4
}
FILES_${PN} += "${libdir}/gstreamer-0.10/*.so"
FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug"
FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a"
|