blob: 9ffb7914da03b01d90628b10104850be4b5cdf51 (
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
|
SRC_URI = "git://github.com/renesas-rcar/gst-plugins-bad.git;branch=RCAR-GEN3/1.6.3"
SRC_URI += " \
file://configure-allow-to-disable-libssh2.patch \
file://0001-glimagesink-Downrank-to-marginal.patch \
file://0002-glplugin-glwindow-fix-memory-leak-of-navigation-thre.patch \
"
SRCREV = "9b7c647fb89c137439c2edae5e96c44c8fe6337f"
DEPENDS += "weston"
S = "${WORKDIR}/git"
# submodule is extracted before do_populate_lic
addtask do_init_submodule after do_unpack before do_patch
do_init_submodule() {
cd ${S}
git submodule init
git submodule update
}
do_configure_prepend() {
cd ${S}
./autogen.sh --noconfigure
cd ${B}
}
RDEPENDS_${PN} = "libwayland-egl"
|