How to get newer version of Meson?

How do I get meson 1.1.0 or newer in KDE SDK?
I tried using SDK version 6.5, but meson version is report as 0.63.3.

app-id: io.github.app.App
runtime: org.kde.Platform
sdk: org.kde.Sdk
base-version: '6.5'
runtime-version: '6.5'
command: run.sh
finish-args:
  - --share=ipc
  - --socket=x11
  - --device=dri
modules:
  - name: meson-test
    buildsystem: simple
    build-commands:
      - meson --version

I found that I can just install newer version of meson instead.


  - name: meson
    buildsystem: simple
    build-commands:
      - python3 setup.py build
      - python3 setup.py install --prefix=/app --root=/
    sources:
      - type: git
        url: https://github.com/mesonbuild/meson.git
        tag: '1.1.1'
1 Like