aboutsummaryrefslogtreecommitdiff
path: root/extra/gst-plugins/build
diff options
context:
space:
mode:
Diffstat (limited to 'extra/gst-plugins/build')
-rwxr-xr-xextra/gst-plugins/build23
1 files changed, 18 insertions, 5 deletions
diff --git a/extra/gst-plugins/build b/extra/gst-plugins/build
index 6f7233ad..8ebe5a63 100755
--- a/extra/gst-plugins/build
+++ b/extra/gst-plugins/build
@@ -1,5 +1,15 @@
#!/bin/sh -e
+check_option() {
+ # Meson >=0.60.0 fails when an option used is unspecified in the project.
+ # Meson also fails when supplied with empty arguments, so we set the return
+ # value to something that the project provides
+ grep -q "^option('$1'," meson_options.txt || set -- localedir share/locale
+ # We are not trying to pass an option to printf here.
+ # shellcheck disable=3045
+ printf '-D%s=%s' "$@"
+}
+
export DESTDIR="$1"
[ "$CPT_TEST" ] && test=enabled
@@ -7,11 +17,14 @@ export DESTDIR="$1"
for plugin in libav good bad ugly; do (
cd "$plugin"
- meson \
- --prefix=/usr \
- -Dexample=false \
- -Dtests=${test:-disabled} \
- -Dqt5=disabled \
+ # Enable auto-features in gst-plugins
+ cl-meson \
+ --auto-features=auto \
+ "$(check_option examples disabled)" \
+ "$(check_option nls disabled)" \
+ "$(check_option introspection disabled)" \
+ "$(check_option tests "${test:-disabled}")" \
+ "$(check_option qt5 disabled)" \
. output
ninja -C output