summaryrefslogtreecommitdiff
path: root/buildstream/plugins/elements/manual.yaml
blob: cba5608cc8c05bf0a11e2fbfe2fc0175e5704d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# No variables added for the manual element by default, set
# this if you plan to use make, and the sources cannot handle
# parallelization.
#
# variables:
#
#   notparallel: True

# Manual build element does not provide any default
# build commands
config:

  # Commands for configuring the software
  #
  configure-commands: []

  # Commands for building the software
  #
  build-commands: []

  # Commands for installing the software into a
  # destination folder
  #
  install-commands: []

  # Commands for stripping installed binaries
  #
  strip-commands:
  - |
    %{strip-binaries}

# Use max-jobs CPUs for building and enable verbosity
environment:
  MAKEFLAGS: -j%{max-jobs}
  V: 1

# And dont consider MAKEFLAGS or V as something which may
# affect build output.
environment-nocache:
- MAKEFLAGS
- V