[gstreamer] update meson version in docker image (#4437)

GStreamer requires a newer verison of meson (>= 0.54) to build now.

Fixed build error:

meson.build:1:0: ERROR: Meson version is 0.53.2 but project requires >= 0.54
This commit is contained in:
Matthew Waters 2020-09-11 02:26:41 +00:00 committed by GitHub
parent 23d522b2e8
commit 3a2cbe546b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ RUN sed -i '/^#\sdeb-src /s/^#//' "/etc/apt/sources.list" && \
apt-get update && \
apt-get install -y build-essential pkg-config bison flex gettext \
libffi-dev liblzma-dev libvorbis-dev libtheora-dev libogg-dev zlib1g-dev \
ninja-build python3-pip && \
pip3 install meson==0.53.2
python3-pip && \
pip3 install meson==0.55.1 ninja==1.10.0.post2
ADD https://ftp.gnome.org/pub/gnome/sources/glib/2.64/glib-2.64.2.tar.xz $SRC