blob: 0c55ae87a57d8502299aef65e6e41d1e136df601 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
po_dir = join_paths(meson.source_root(), 'po')
dataconf = configuration_data()
dataconf.set('sbindir', matesbindir)
i18n.merge_file(
input : configure_file(
configuration: dataconf,
input : 'org.mate.power.policy.in2',
output: 'org.mate.power.policy.in'
),
output: 'org.mate.power.policy',
po_dir: po_dir,
install: true,
install_dir: join_paths(get_option('datadir'), 'polkit-1', 'actions'),
)
|