edi/data/extra/templates/meson.build

35 lines
1.0 KiB
Meson
Raw Normal View History

2017-10-03 09:52:45 -07:00
tar = find_program('tar')
edje_cc = find_program('edje_cc')
2017-10-03 09:52:45 -07:00
skeleton_names = ['eflproject', 'eflproject_python']
foreach skeleton_name : skeleton_names
custom_target('skeleton ' + skeleton_name,
command : [tar, 'zcf', '@OUTPUT@', '-C',
2018-05-15 07:39:26 -07:00
join_paths(meson.source_root(), 'data', 'extra', 'templates', 'skeletons'),
skeleton_name],
output : skeleton_name + '.tar.gz',
install_dir: join_paths(get_option('prefix'), get_option('datadir'), 'edi', 'templates'),
install : true,
2017-10-03 09:52:45 -07:00
)
endforeach
cmd = [ edje_cc,
'-id', join_paths(meson.source_root(), 'data' , 'extra', 'templates', 'images'),
'@INPUT@', '@OUTPUT@'
]
template_dir = join_paths(get_option('datadir'), 'edi', 'templates')
custom_target('templates_meta',
input : 'templates.edc',
output : 'templates.edj',
command : cmd,
install_dir: template_dir,
install: true,
)
out = join_paths(get_option('prefix'), template_dir, 'templates.edj')
meson.add_install_script('../../../scripts/world_read.sh', out)