
The check for the format of the PACKAGER variable did not align with the rest of the function where it was located. Move to its own function. Signed-off-by: Allan McRae <allan@archlinux.org>
22 lines
498 B
Meson
22 lines
498 B
Meson
libmakepkg_module = 'lint_config'
|
|
|
|
sources = [
|
|
'ext.sh.in',
|
|
'nproc.sh.in',
|
|
'packager.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
|