diff options
author | Peter Oliver <p.d.oliver@mavit.org.uk> | 2021-05-29 04:15:28 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-29 04:15:28 +0200 |
commit | ee7752aac55468f06a71ea0e9ee0be0dff5b1f67 (patch) | |
tree | 8c87b6c84dafcd8ce736c81e34d5ad964719ac5c /etc/emacs.metainfo.xml | |
parent | 459f89f3bcbe5fb1a160b2d215154669343b78d9 (diff) | |
download | emacs-ee7752aac55468f06a71ea0e9ee0be0dff5b1f67.tar.gz emacs-ee7752aac55468f06a71ea0e9ee0be0dff5b1f67.tar.bz2 emacs-ee7752aac55468f06a71ea0e9ee0be0dff5b1f67.zip |
Rename emacs.appdata.xml to emacs.metainfo.xml and add more data
* Makefile.in: Replace "appdata" with "metainfo".
This is the name currently recommended by the spec at
<https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html>.
* etc/emacs.metainfo.xml: Populate more fields, based on those
available in
https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html
(bug#48662).
Copyright-paperwork-exempt: yes
Diffstat (limited to 'etc/emacs.metainfo.xml')
-rw-r--r-- | etc/emacs.metainfo.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/etc/emacs.metainfo.xml b/etc/emacs.metainfo.xml new file mode 100644 index 00000000000..7467b88e736 --- /dev/null +++ b/etc/emacs.metainfo.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2014-2021 Free Software Foundation, Inc. --> +<component type="desktop-application"> + <id>org.gnu.emacs</id> + <metadata_license>GFDL-1.3+</metadata_license> + <name>GNU Emacs</name> + <summary>An extensible text editor</summary> + <icon type="remote" width="128" height="128">https://www.gnu.org/software/emacs/images/emacs.png</icon> + <description> + <p> + GNU Emacs is an extensible, customizable text editor - and more. + At its core is an interpreter for Emacs Lisp, a dialect of the Lisp + programming language with extensions to support text editing. + </p> + <p>The features of GNU Emacs include:</p> + <ul> + <li>Content-sensitive editing modes, including syntax coloring, for + a wide-range of file types</li> + <li>Complete built-in documentation, including a tutorial for new users</li> + <li>Full Unicode support for nearly all human languages and their scripts</li> + <li>Highly customizable, using Emacs Lisp code or a graphical interface</li> + <li>Includes a project planner, mail and news reader, debugger + interface, calendar, and more</li> + </ul> + </description> + <categories> + <category>Development</category> + <category>TextEditor</category> + </categories> + <url type="homepage">https://www.gnu.org/software/emacs</url> + <url type="bugtracker">https://debbugs.gnu.org/</url> + <url type="faq">https://www.gnu.org/software/emacs/manual/html_mono/efaq.html</url> + <url type="help">https://www.gnu.org/software/emacs/documentation.html</url> + <url type="donation">https://my.fsf.org/donate/</url> + <url type="contact">https://lists.gnu.org/mailman/listinfo/emacs-devel/</url> + <launchable type="desktop-id">emacs.desktop</launchable> + <launchable type="service">emacs.service</launchable> + <project_group>GNU</project_group> + <project_license>GPL-3.0+ and GFDL-1.3+</project_license> + <developer_name>Free Software Foundation</developer_name> + <screenshots> + <screenshot type="default"> + <image type="source" width="632" height="354">https://www.gnu.org/software/emacs/images/appdata-26.png</image> + <caption>Editing a Lisp program whilst viewing the Emacs manual.</caption> + </screenshot> + </screenshots> + <update_contact>emacs-devel_AT_gnu.org</update_contact> +</component> |