Skip to content

Commit 4c96a9b

Browse files
Fix meson version: install via pip3 for VapourSynth >= 0.63 requirement
Ubuntu 22.04 ships meson 0.61.2 but VapourSynth R73 needs >= 0.63.0. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 726c8ce commit 4c96a9b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build-deps-linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ jobs:
2424
run: |
2525
sudo apt-get update
2626
sudo apt-get install -y \
27-
meson ninja-build cmake nasm patchelf autoconf automake libtool \
28-
cython3 pkg-config gcc g++ \
27+
ninja-build cmake nasm patchelf autoconf automake libtool \
28+
cython3 pkg-config gcc g++ python3-pip \
2929
libfftw3-dev libboost-filesystem-dev libboost-atomic-dev \
3030
ocl-icd-opencl-dev opencl-headers libdvdread-dev \
3131
unzip
32+
# Ubuntu 22.04 ships meson 0.61 but VapourSynth needs >= 0.63
33+
pip3 install meson
3234
3335
- name: Build dependencies
3436
run: |

0 commit comments

Comments
 (0)