1# No variables added for the manual element by default, set
2# this if you plan to use make, and the sources cannot handle
3# parallelization.
4#
5# variables:
6#
7#   notparallel: True
8
9# Manual build element does not provide any default
10# build commands
11config:
12
13  # Commands for configuring the software
14  #
15  configure-commands: []
16
17  # Commands for building the software
18  #
19  build-commands: []
20
21  # Commands for installing the software into a
22  # destination folder
23  #
24  install-commands: []
25
26  # Commands for stripping installed binaries
27  #
28  strip-commands:
29  - |
30    %{strip-binaries}
31
32# Use max-jobs CPUs for building and enable verbosity
33environment:
34  MAKEFLAGS: -j%{max-jobs}
35  V: 1
36
37# And dont consider MAKEFLAGS or V as something which may
38# effect build output.
39environment-nocache:
40- MAKEFLAGS
41- V
42