diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 15:18:46 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 15:18:46 +0000 |
commit | 56294d30a82ec2da6f9ce399740c1ef65a9ddef4 (patch) | |
tree | bbe3823e41495d026ba8edc6eeaef166edb7e2a2 /README.md | |
parent | Initial commit. (diff) | |
download | gnome-software-56294d30a82ec2da6f9ce399740c1ef65a9ddef4.tar.xz gnome-software-56294d30a82ec2da6f9ce399740c1ef65a9ddef4.zip |
Adding upstream version 3.38.1.upstream/3.38.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..c40a273 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +[![Build Status](https://gitlab.gnome.org/GNOME/gnome-software/badges/master/build.svg)](https://gitlab.gnome.org/GNOME/gnome-software/pipelines) + +# Software + +[Software](https://wiki.gnome.org/Apps/Software) lets you install and update applications and system extensions. +A plugin system is used to access software from different sources. +Plugins are provided for: + - Traditional package installation via PackageKit (e.g. Debian package, RPM). + - Next generation packages: [Flatpak](https://flatpak.org/) and [Snap](https://snapcraft.io/). + - Firmware updates. + - Ratings and reviews using [ODRS](https://odrs.gnome.org/). + +Software supports showing metadata that closely matches the [AppStream](https://www.freedesktop.org/wiki/Distributions/AppStream/) format. + +Software runs as a background service to provide update notifications and be a search provider for [GNOME Shell](https://wiki.gnome.org/Projects/GnomeShell). + +# Building + +Build locally with: +``` +$ meson --prefix $PWD/install build/ +$ ninja -C build/ all install +$ killall gnome-software +$ XDG_DATA_DIRS=install/share:$XDG_DATA_DIRS ./install/bin/gnome-software +``` + +# Debugging + +Running with `--verbose` will give detailed logging information. |