blob: 5ed9205e9f4757a5a1959864b5352e14f72dadfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
dgen = find_program('desktopgenerator.py')
desktop_in_file = custom_target('something.desktop.in',
input : ['something.desktop.in.in'],
output : 'something.desktop.in',
command : [dgen, '@INPUT@', '@OUTPUT@'],
)
i18n.merge_file(
input : desktop_in_file,
output : 'something.desktop',
type : 'desktop',
po_dir : '../po',
install: true,
install_dir: join_paths(get_option('datadir'), 'applications'),
)
|