summaryrefslogtreecommitdiff
path: root/src/buildstream/plugins/elements/meson.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/plugins/elements/meson.yaml')
-rw-r--r--src/buildstream/plugins/elements/meson.yaml79
1 files changed, 0 insertions, 79 deletions
diff --git a/src/buildstream/plugins/elements/meson.yaml b/src/buildstream/plugins/elements/meson.yaml
deleted file mode 100644
index 2172cb34c..000000000
--- a/src/buildstream/plugins/elements/meson.yaml
+++ /dev/null
@@ -1,79 +0,0 @@
-# Meson default configuration
-
-variables:
-
- build-dir: _builddir
-
- # Project-wide extra arguments to be passed to `meson`
- meson-global: ''
-
- # Element-specific extra arguments to be passed to `meson`.
- meson-local: ''
-
- # For backwards compatibility only, do not use.
- meson-extra: ''
-
- meson-args: |
-
- --prefix=%{prefix} \
- --bindir=%{bindir} \
- --sbindir=%{sbindir} \
- --sysconfdir=%{sysconfdir} \
- --datadir=%{datadir} \
- --includedir=%{includedir} \
- --libdir=%{libdir} \
- --libexecdir=%{libexecdir} \
- --localstatedir=%{localstatedir} \
- --sharedstatedir=%{sharedstatedir} \
- --mandir=%{mandir} \
- --infodir=%{infodir} %{meson-extra} %{meson-global} %{meson-local}
-
- meson: meson %{conf-root} %{build-dir} %{meson-args}
-
- ninja: |
- ninja -j ${NINJAJOBS} -C %{build-dir}
-
- ninja-install: |
- env DESTDIR="%{install-root}" ninja -C %{build-dir} install
-
- # Set this if the sources cannot handle parallelization.
- #
- # notparallel: True
-
-config:
-
- # Commands for configuring the software
- #
- configure-commands:
- - |
- %{meson}
-
- # Commands for building the software
- #
- build-commands:
- - |
- %{ninja}
-
- # Commands for installing the software into a
- # destination folder
- #
- install-commands:
- - |
- %{ninja-install}
-
- # Commands for stripping debugging information out of
- # installed binaries
- #
- strip-commands:
- - |
- %{strip-binaries}
-
-# Use max-jobs CPUs for building
-environment:
- NINJAJOBS: |
- %{max-jobs}
-
-# And dont consider NINJAJOBS as something which may
-# affect build output.
-environment-nocache:
-- NINJAJOBS