mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-22 09:31:06 +00:00
44479cf42a
The monorepo now ensures that the gtk subproject keeps building on windows and macOS via its own CI. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1499>
49 lines
1.1 KiB
Bash
Executable file
49 lines
1.1 KiB
Bash
Executable file
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
DEFAULT_BRANCH="$GST_UPSTREAM_BRANCH"
|
|
|
|
pip3 install meson==1.5.1 --break-system-packages
|
|
|
|
# gstreamer-rs already has a 'gstreamer' directory so don't clone there
|
|
pushd .
|
|
cd ..
|
|
git clone https://gitlab.freedesktop.org/gstreamer/gstreamer.git \
|
|
--depth 1 \
|
|
--branch "$DEFAULT_BRANCH"
|
|
|
|
cd gstreamer
|
|
|
|
# plugins required by tests
|
|
PLUGINS="-D gst-plugins-base:ogg=enabled \
|
|
-D gst-plugins-base:vorbis=enabled \
|
|
-D gst-plugins-base:theora=enabled \
|
|
-D gst-plugins-good:matroska=enabled \
|
|
-D gst-plugins-good:vpx=enabled \
|
|
-D gst-plugins-bad:opus=enabled \
|
|
-D gst-plugins-ugly:x264=enabled"
|
|
|
|
meson setup build \
|
|
-D prefix=/usr/local \
|
|
-D gpl=enabled \
|
|
-D ugly=enabled \
|
|
-D gtk=enabled \
|
|
-D examples=disabled \
|
|
-D gtk_doc=disabled \
|
|
-D introspection=disabled \
|
|
-D libav=disabled \
|
|
-D python=disabled \
|
|
-D vaapi=disabled \
|
|
$PLUGINS
|
|
meson compile -C build
|
|
meson install -C build
|
|
ldconfig
|
|
|
|
cd ..
|
|
rm -rf gstreamer/
|
|
|
|
# Check what plugins we installed
|
|
gst-inspect-1.0
|
|
|
|
popd
|