diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:36:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:36:24 +0000 |
commit | 9b6d8e63db85c30007b463e91f91a791969fa83f (patch) | |
tree | 0899af51d73c1bf986f73ae39a03c4436083018a /shell/appdata | |
parent | Initial commit. (diff) | |
download | gnome-control-center-upstream.tar.xz gnome-control-center-upstream.zip |
Adding upstream version 1:3.38.4.upstream/1%3.38.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | shell/appdata/gnome-control-center.appdata.xml.in | 30 | ||||
-rw-r--r-- | shell/appdata/meson.build | 10 |
2 files changed, 40 insertions, 0 deletions
diff --git a/shell/appdata/gnome-control-center.appdata.xml.in b/shell/appdata/gnome-control-center.appdata.xml.in new file mode 100644 index 0000000..bbed55c --- /dev/null +++ b/shell/appdata/gnome-control-center.appdata.xml.in @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright 2015 Richard Hughes <richard@hughsie.com> --> +<component type="desktop"> + <id>gnome-control-center.desktop</id> + <metadata_license>CC0-1.0</metadata_license> + <project_license>GPL-2.0+</project_license> + <name>GNOME Settings</name> + <summary>Utility to configure the GNOME desktop</summary> + <description> + <p> + Settings is the primary interface for configuring your system. + </p> + </description> + <url type="bugtracker">https://gitlab.gnome.org/GNOME/gnome-control-center/issues/</url> + <url type="donation">https://www.gnome.org/friends/</url> + <url type="translate">https://wiki.gnome.org/TranslationProject</url> + <update_contact>gnomecc-list_at_gnome.org</update_contact> + <project_group>GNOME</project_group> + <launchable type="desktop-id">gnome-control-center.desktop</launchable> + <developer_name>The GNOME Project</developer_name> + <compulsory_for_desktop>GNOME</compulsory_for_desktop> + <kudos> + <kudo>HiDpiIcon</kudo> + <kudo>HighContrast</kudo> + <kudo>ModernToolkit</kudo> + <kudo>SearchProvider</kudo> + <kudo>UserDocs</kudo> + </kudos> + <translation type="gettext">gnome-control-center-2.0</translation> +</component> diff --git a/shell/appdata/meson.build b/shell/appdata/meson.build new file mode 100644 index 0000000..3b36171 --- /dev/null +++ b/shell/appdata/meson.build @@ -0,0 +1,10 @@ +appdata = 'gnome-control-center.appdata.xml' + +i18n.merge_file( + appdata, + input: appdata + '.in', + output: appdata, + po_dir: po_dir, + install: true, + install_dir: join_paths(control_center_datadir, 'metainfo') +) |