From 0406eebf9e3e6ee4b2295baedb74dba27a2b2c69 Mon Sep 17 00:00:00 2001 From: Scott Moreau Date: Fri, 27 Feb 2026 21:21:03 -0700 Subject: [PATCH] Add meson.build file This simply calls 'pip install . --break-system-packages' as a convenience wrapper so it can be included as a subproject in others that use the meson build system. To install, simply run 'meson setup build'. Build and install commands will not have any targets, but they will succeed nonetheless. --- meson.build | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 meson.build diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..e3ec026 --- /dev/null +++ b/meson.build @@ -0,0 +1,11 @@ +project( + 'pywayfire', + version: '3.2', + license: 'MIT', + meson_version: '>=0.55', +) + +dependency('wayfire', required: false) +pip = find_program('pip') + +message(run_command(pip, 'install', '.', '--break-system-packages', check: true).stdout().strip())