17 lines
515 B
Diff
17 lines
515 B
Diff
--- a/data/meson.build
|
|
+++ b/data/meson.build
|
|
@@ -1,10 +1,13 @@
|
|
dataconf = configuration_data()
|
|
dataconf.set('VERSION', meson.project_version())
|
|
|
|
+schemadir = get_option('prefix') / get_option('datadir') / 'glib-2.0' / 'schemas'
|
|
+
|
|
install_data(
|
|
'org.nemo.plugins.seahorse.gschema.xml',
|
|
'org.nemo.plugins.seahorse.window.gschema.xml',
|
|
install_dir: get_option('datadir') / 'glib-2.0' / 'schemas',
|
|
)
|
|
|
|
+meson.add_install_script('glib-compile-schemas', schemadir)
|
|
install_man('nemo-seahorse-tool.1')
|