diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-20 21:43:32 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-20 23:18:49 +0100 |
commit | 4bebd7e4e606c1fc7578c948094675e6f95c2619 (patch) | |
tree | a247250f6965beb260d2afca0bd726a1d0dc9c55 /gnu/packages/gstreamer.scm | |
parent | 1bf1e32b01624fe7833d6a6d1bd6cff7e4559c72 (diff) | |
download | patches-4bebd7e4e606c1fc7578c948094675e6f95c2619.tar patches-4bebd7e4e606c1fc7578c948094675e6f95c2619.tar.gz |
gnu: gst-libav: Build with Meson.
* gnu/packages/gstreamer.scm (gst-libav)[build-system]: Change to MESON-BUILD-SYSTEM.
[arguments]: Remove.
Diffstat (limited to 'gnu/packages/gstreamer.scm')
-rw-r--r-- | gnu/packages/gstreamer.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 815340a14c..d84d2009b5 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -419,9 +419,7 @@ distribution problems in some jurisdictions, e.g. due to patent threats.") ;; Drop bundled ffmpeg. (delete-file-recursively "gst-libs/ext/libav") #t)))) - (build-system gnu-build-system) - (arguments - '(#:configure-flags '("--with-system-libav"))) + (build-system meson-build-system) (native-inputs `(("pkg-config" ,pkg-config) ("python" ,python))) |