
We use NPROC for managing the number of parallel jobs to run, so it is essentially that this is a valid number. Add a lint pass, and move the setting of the default value to this location. Signed-off-by: Allan McRae <allan@archlinux.org>
21 lines
478 B
Meson
21 lines
478 B
Meson
libmakepkg_module = 'lint_config'
|
|
|
|
sources = [
|
|
'ext.sh.in',
|
|
'nproc.sh.in',
|
|
'paths.sh.in',
|
|
'source_date_epoch.sh.in',
|
|
'variable.sh.in',
|
|
]
|
|
|
|
foreach src : sources
|
|
output_dir = join_paths(get_option('datadir'), 'makepkg', libmakepkg_module)
|
|
|
|
custom_target(
|
|
libmakepkg_module + '_' + src.underscorify(),
|
|
command : [ SCRIPT_EDITOR, '@INPUT@', '@OUTPUT@' ],
|
|
input : src,
|
|
output : '@BASENAME@',
|
|
install : true,
|
|
install_dir : output_dir)
|
|
endforeach
|