Skip to content

fedelibre/appstream

 
 

Repository files navigation

AppStream

AppStream is a collaborative effort for making machine-readable software metadata easily available to programs that need it. It is part of the Freedesktop ecosystem and provides a convenient way to retrieve information about available software, making it one of the building blocks for modern software centers.

AppStream consists of a specification to describe individual software component metadata in XML (so-called MetaInfo files), as well as a derived specification for a metadata-collection format to provide a list of these metadata entries in XML or YAML for easy consumption by software centers and other tools which need to know about available software in a repository. In addition to the metadata specification, AppStream specifies a set of related features to help providing better metadata for software repositories (primarily in Linux distributions). This reference implementation of AppStream provides a shared library to work with these metadata files, features to index and query their data quickly, as well as other useful related functionality to make building programs which work with software metadata very easy.

This repository contains:

  • the AppStream specification
  • the appstreamcli utility to access and edit metadata, manipulate caches, show diagnostic information, etc. (see man appstreamcli)
  • a GLib/GObject based library for reading and writing AppStream metadata in XML and YAML, accessing the system data pool, and auxiliary functionality
  • a Qt5 based library for accessing AppStream

Useful Links

AppStream Documentation - The AppStream specification and help
Releases - All (signed) releases of AppStream
AppStream on Freedesktop - The original Freedesktop.org page

For help and development discussion, check out the AppStream mailinglist.

Users

If you are an upstream application author and want to add a MetaInfo file to your application, check out the Quickstart Guides in the documentation. An even quicker way to get to your metadata is using the MetaInfo Creator web application. You can check out its source code here.

If you are a (Linux) distributor or owner of a software repository you want to generate AppStream Collection Metadata for, you may want to take a look at the AppStream Generator project.

Developers

Build Status Translation status

Dependencies

Required

  • Meson (>= 0.48)
  • glib2 (>= 2.58)
  • GObject-Introspection
  • libxml2
  • libyaml
  • LMDB

Optional

  • Vala Compiler (vapigen) (for Vala VAPI file)
  • Snowball (for stemming support)

Documentation / Specification

  • Publican

Qt (for libappstream-qt)

  • Qt5 Core

Build instructions

To compile AppStream, make sure that you have all required libraries (development files!) installed. Then continue (the build system will complain about missing dependencies).

Use Meson to configure AppStream and build it with ninja:

mkdir build
cd build
meson <flags> ..
ninja
ninja test

Possible AppStream-specific flags are:
-Dqt=true -- Build the Qt interface library (default: false)
-Dvapi=true -- Build Vala API to use the library with the Vala programming language (default: false)
-Ddocs=true -- Build specification and other documentation, requires Publican (default: false)
-Dinstall-docs=true -- Install documentation (default: true)
-Dmaintainer=true -- Enable strict compiler options - use this if you write a patch for AppStream (default: false)
-Dstemming=true -- Enable support for stemming in fulltext searches (default: true)
-Dapt-support=true -- Enable integration with the APT package manager on Debian (default: false)

Installation

To install the compiled binaries and required data, execute ninja install with superuser permission.

Translators

You can help translating AppStream via Weblate. Check out the AppStream Weblate Page.

About

Tools and libraries to work with AppStream metadata

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 88.6%
  • C++ 9.0%
  • Meson 1.3%
  • Python 0.6%
  • Shell 0.3%
  • CMake 0.2%