summaryrefslogtreecommitdiff
path: root/data/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'data/meson.build')
-rw-r--r--data/meson.build11
1 files changed, 8 insertions, 3 deletions
diff --git a/data/meson.build b/data/meson.build
index c12b619..8dea27b 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -1,13 +1,18 @@
-# ggaze data: .desktop entry + GSettings schema. Full AppStream/icon install
-# lands in M10; this wires the basics so `meson install` lays out the app and
-# compiles the schema. gnome.post_install also refreshes the desktop database.
+# ggaze data: .desktop entry + GSettings schema + AppStream metainfo + man page.
+# `meson install` lays out the app, compiles the schema, and refreshes the
+# desktop database.
install_data('org.buetow.ggaze.desktop',
install_dir : join_paths(get_option('datadir'), 'applications'))
+install_data('org.buetow.ggaze.metainfo.xml',
+ install_dir : join_paths(get_option('datadir'), 'metainfo'))
+
install_data('org.buetow.ggaze.gschema.xml',
install_dir : join_paths(get_option('datadir'), 'glib-2.0', 'schemas'))
+install_man('ggaze.1')
+
gnome = import('gnome')
gnome.post_install(
glib_compile_schemas : true,