Go to file
2022-07-26 13:51:55 +02:00
.github/workflows trivial: ci: Bump Meson version 2022-04-10 20:51:07 +02:00
contrib Make use of the same icon policy as ascompose 2022-02-20 22:38:04 +01:00
data Improve explanation of the "no-metainfo" tag 2021-12-21 19:26:05 +01:00
docs docs: clarify directory structure 2022-07-26 13:51:55 +02:00
src Ensure all user feature flags are applied properly again 2022-04-24 18:36:02 +02:00
tests ci: fedora: Upgrade Meson 2022-04-25 12:08:38 +02:00
.editorconfig Add editorconfig 2021-01-22 22:20:41 +01:00
.gitignore Add initial code and primitives 2016-03-03 20:59:03 +01:00
LICENSE Update license 2016-03-03 20:59:11 +01:00
MAINTAINERS Add more documentation 2016-03-29 03:09:26 +02:00
meson_options.txt Fetch JavaScript bits with Yarn instead of Bower 2018-04-03 22:15:23 +02:00
meson.build trivial: post release version bump 2022-04-10 21:33:55 +02:00
NEWS Release version 0.8.8 2022-04-10 21:32:31 +02:00
README.md ci: Switch from Travis to GitHub Actions 2021-01-22 23:58:46 +01:00
RELEASE trivial: post release version bump 2022-04-10 21:33:55 +02:00
snapcraft.yaml snap: Bump AppStream version 2022-02-22 18:11:38 +01:00
TODO trivial: Mark TODO entry as resolved 2020-01-20 20:24:50 +01:00

AppStream Generator

AppStream is an effort to provide additional metadata and unique IDs for all software available in a Linux system. This repository contains the server-side of the AppStream infrastructure, a tool to generate metadata from distribution packages. You can find out more about AppStream collection metadata at Freedesktop.

The AppStream generator is currently primarily used by Debian, but is written in a distribution agnostic way. Backends only need to implement two interfaces to to be ready.

If you are looking for the AppStream client-tools, the AppStream repository is where you want to go.

AppStream Generator Logo

Development

Build Test

Build dependencies

  • LDC1
  • Meson (>= 0.46) 2
  • GLibD 3
  • AppStream 4
  • libarchive (>= 3.2) 5
  • LMDB 6
  • GirToD 7
  • LibSoup
  • Cairo
  • GdkPixbuf 2.0
  • RSvg 2.0
  • FreeType
  • Fontconfig
  • Pango
  • Yarn (optional) 8

On Debian and derivatives of it, all build requirements can be installed using the following command:

sudo apt install meson ldc gir-to-d libappstream-dev libsoup2.4-dev libarchive-dev \
    libgdk-pixbuf2.0-dev librsvg2-dev libcairo2-dev libfreetype6-dev libfontconfig1-dev \
    libpango1.0-dev liblmdb-dev libglibd-2.0-dev

Build instructions

To build the tool with Meson, create a build subdirectory, change into it and run meson .. && ninja to build. In summary:

$ mkdir build && cd build
$ meson -Ddownload-js=true ..
$ ninja
$ sudo ninja install

We support several options to be set to influence the build. Change into the build directory and run mesonconf to see them all.

You might want to perform an optimized debug build by passing --buildtype=debugoptimized to meson or just do a release build straight away with --buildtype=release in case you want to use the resulting binaries productively. By default, the build happens without optimizations which slows down the generator.

Usage

Take a look at the docs/ directory in the source tree for information on how to use the generator and write configuration files for it.

Hacking

Pull-requests and patches are very welcome! If you are new to D, it is highly recommended to take a few minutes to look at the D tour to get a feeling of what the language can do: https://tour.dlang.org/