Meson is an open source build system designed to be both extremely fast and as user friendly as possible.
Compile Meson with the following command:
pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD
Install the package:
pip3 install --no-index --find-links dist meson
The meaning of the install parameters:
-w
dist
Puts the created wheels into the dist directory.
--find-links
dist
Installs wheels from the dist
directory.