pacman/scripts/libmakepkg/source/meson.build
Ivy Foster 08f4ae709c Add fossil scm support to makepkg
Signed-off-by: Ivy Foster <escondida@iff.ink>
Signed-off-by: Allan McRae <allan@archlinux.org>
2020-11-26 21:58:40 +10:00

23 lines
485 B
Meson

libmakepkg_module = 'source'
sources = [
'bzr.sh.in',
'file.sh.in',
'fossil.sh.in',
'git.sh.in',
'hg.sh.in',
'local.sh.in',
'svn.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