Guidelines and HOWTOs/AppStream: Difference between revisions

From KDE Community Wiki
m (D-Bus)
(Random tweaks)
Line 1: Line 1:
Quick guide on how to AppStream your app. For a more in-depth overview hop on over to [https://techbase.kde.org/MetaInfo Techbase].
Quick guide on how to AppStream your app. For a more in-depth overview hop on over to [https://techbase.kde.org/MetaInfo Techbase].


Checklist
==Checklist==


Assuming your software is named "foo"...
# Make sure your desktop file is reverse-domain-notation i.e. org.kde.foo
# Make sure your desktop file is reverse-domain-notation i.e. org.kde.foo
## Your desktop file should be org.kde.foo.desktop. This is also your desktop-id, so whenver you may need that. It's basically your file name.
## Your desktop file should be org.kde.foo.desktop. This is also your desktop-id, so whenver you may need that. It's basically your file name.
## If you have a D-Bus service ... make sure that your D-Bus service name matches this or change your desktop file to match the service address (whichever seems more appropriate)
## If you have a D-Bus service ... make sure that your D-Bus service name matches this or change your desktop file to match the service address (whichever seems more appropriate)
## The name part 'foo' MUST be the name of your binary or you need to use [https://api.kde.org/frameworks/kcoreaddons/html/classKAboutData.html KAboutData::setDesktopFileName()] to set the desktop file name you are using
## The name part 'foo' MUST be the name of your binary. If it should be different you need to either use [https://api.kde.org/frameworks/kcoreaddons/html/classKAboutData.html KAboutData::setDesktopFileName()] or, if not using KAboutData, [https://doc.qt.io/qt-5/qguiapplication.html#desktopFileName-prop QGuiApplication::setDesktopFileName()] to set the desktop file name you are using for the app's runtime metadata
# Create org.kde.foo.appdata.xml in your source tree
# Create a file org.kde.foo.appdata.xml in your source tree
# Paste the template you can find below into that file
# Paste the template you can find below (see section [[#Template|Template]]) into that file
# Make sure you replaced all place holders from the template
# Make sure you replaced all place holders from the template
# Take some screenshots and put them in the git repo [https://phabricator.kde.org/source/websites-product-screenshots/ kde:websites/product-screenshots] (note the readme)
# Take some screenshots and put them in the git repo [https://phabricator.kde.org/source/websites-product-screenshots/ kde:websites/product-screenshots] (note the README.md)
# Add your screenshots to the appdata.xml file.
# Add the CDN links to your screenshots to the appdata.xml file.
# Install the file via CMake (KDE_INSTALL_METAINFODIR is defined by KDEInstallDirs from extra-cmake-modules) {{Input|<syntaxhighlight lang="cmake" line>
# Install the file via CMake (KDE_INSTALL_METAINFODIR is defined by [https://api.kde.org/ecm/kde-module/KDEInstallDirs.html KDEInstallDirs] from extra-cmake-modules) {{Input|<syntaxhighlight lang="cmake" line>
install(FILES org.kde.foo.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
install(FILES org.kde.foo.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
</syntaxhighlight>}}
</syntaxhighlight>}}
Line 27: Line 28:
== Template ==
== Template ==


Carefully review '''all''' fields and replace $NAME with your application name as seen in the reverse domain notation. Where appropriate the fields have URLs of AppStream documentation to help you find out what to put there.
Carefully review '''all''' fields and replace all $VARIABLES ($NAME with your application name as seen in the reverse domain notation). Where appropriate the fields have URLs of respective AppStream documentation to help you find out what to put there.


{{Input|1=<nowiki>
{{Input|<syntaxhighlight lang="xml">
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<component type="desktop">
<component type="desktop">
   <id>org.kde.$NAME.desktop</id>
   <id>org.kde.$NAME.desktop</id>
   <metadata_license>CC0-1.0</metadata_license>
   <metadata_license>CC0-1.0</metadata_license>
   <project_license> https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-metadata_license </project_license>
   <project_license> see https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-metadata_license </project_license>
   <name>$NAME</name>
   <name>$NAME</name>
   <summary> https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-summary </summary>
   <summary> see https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-summary </summary>
   <description>
   <description>
     <p> https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-description </p>
     <p> see https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-description </p>
    <p>And see.</p>
    <p>And see:</p>
    <ul>
      <li>this</li>
      <li>that</li>
    </ul>
   </description>
   </description>
   <url type="homepage">https://www.kde.org</url>
   <url type="homepage">https://www.kde.org</url>
   <url type="bugtracker">https://bugs.kde.org</url>
   <url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?format=guided&amp;product=$YOURPRODUCTNAME</url>
   <url type="donation">https://www.kde.org/community/donations</url>
   <url type="donation">https://www.kde.org/community/donations/?app=$YOURBINARYNAME</url>
   <screenshots>
   <screenshots>
     <screenshot type="default">
     <screenshot type="default">
       <image>
       <image>
         https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-screenshots
         see https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-screenshots
         Central hosting at https://phabricator.kde.org/source/websites-product-screenshots/
         Central hosting for uploading at https://phabricator.kde.org/source/websites-product-screenshots/
         Central URL https://cdn.kde.org/screenshots/...
         Central URL to use here https://cdn.kde.org/screenshots/...
       </image>
       </image>
     </screenshot>
     </screenshot>
   </screenshots>
   </screenshots>
   <provides>
   <provides>
     <binary>$YOURBINARYNAME!</binary>
     <binary>$YOURBINARYNAME</binary>
   </provides>
   </provides>
   <project_group>KDE</project_group>
   <project_group>KDE</project_group>
</component>
</component>
</nowiki>}}
</syntaxhighlight>}}

Revision as of 18:08, 8 April 2017

Quick guide on how to AppStream your app. For a more in-depth overview hop on over to Techbase.

Checklist

Assuming your software is named "foo"...

  1. Make sure your desktop file is reverse-domain-notation i.e. org.kde.foo
    1. Your desktop file should be org.kde.foo.desktop. This is also your desktop-id, so whenver you may need that. It's basically your file name.
    2. If you have a D-Bus service ... make sure that your D-Bus service name matches this or change your desktop file to match the service address (whichever seems more appropriate)
    3. The name part 'foo' MUST be the name of your binary. If it should be different you need to either use KAboutData::setDesktopFileName() or, if not using KAboutData, QGuiApplication::setDesktopFileName() to set the desktop file name you are using for the app's runtime metadata
  2. Create a file org.kde.foo.appdata.xml in your source tree
  3. Paste the template you can find below (see section Template) into that file
  4. Make sure you replaced all place holders from the template
  5. Take some screenshots and put them in the git repo kde:websites/product-screenshots (note the README.md)
  6. Add the CDN links to your screenshots to the appdata.xml file.
  7. Install the file via CMake (KDE_INSTALL_METAINFODIR is defined by KDEInstallDirs from extra-cmake-modules)
    install(FILES org.kde.foo.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
    
  8. Validate your appdata using the appstreamcli helper
    appstreamcli validate org.kde.foo.appdata.xml
  9. Validate your installed tree using the helper in your build directory
    make
    make install DESTDIR=root
    appstreamcli validate-tree root
    rm -r root
    
  10. If all looks good commit and push
  11. If you have any questions submit a review and make sure to subscribe sitter and mak

Template

Carefully review all fields and replace all $VARIABLES ($NAME with your application name as seen in the reverse domain notation). Where appropriate the fields have URLs of respective AppStream documentation to help you find out what to put there.

<?xml version="1.0" encoding="utf-8"?>
<component type="desktop">
  <id>org.kde.$NAME.desktop</id>
  <metadata_license>CC0-1.0</metadata_license>
  <project_license> see https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-metadata_license </project_license>
  <name>$NAME</name>
  <summary> see https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-summary </summary>
  <description>
    <p> see https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-description </p>
    <p>And see.</p>
    <p>And see:</p>
    <ul>
      <li>this</li>
      <li>that</li>
    </ul>
  </description>
  <url type="homepage">https://www.kde.org</url>
  <url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?format=guided&amp;product=$YOURPRODUCTNAME</url>
  <url type="donation">https://www.kde.org/community/donations/?app=$YOURBINARYNAME</url>
  <screenshots>
    <screenshot type="default">
      <image>
        see https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-screenshots
        Central hosting for uploading at https://phabricator.kde.org/source/websites-product-screenshots/
        Central URL to use here https://cdn.kde.org/screenshots/...
      </image>
    </screenshot>
  </screenshots>
  <provides>
    <binary>$YOURBINARYNAME</binary>
  </provides>
  <project_group>KDE</project_group>
</component>