From 9e5dfa22211677cf71791925a68688a3b3284c7e Mon Sep 17 00:00:00 2001 From: Martin Zurowietz Date: Tue, 13 Jun 2023 21:05:49 +0200 Subject: [PATCH] extensions-app: Extend build instructions Related to #6575 Part-of: --- subprojects/extensions-app/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/subprojects/extensions-app/README.md b/subprojects/extensions-app/README.md index d621ed1ab..ba1f38444 100644 --- a/subprojects/extensions-app/README.md +++ b/subprojects/extensions-app/README.md @@ -22,6 +22,17 @@ To do that, simply run the included script: $ ./generate-translations.sh ``` +You can then build and install the project: + +``` +$ meson setup --prefix=/usr _build +$ meson compile -C _build +$ meson install -C _build +$ /usr/bin/gnome-extensions-app +``` + +For development you can also install the project to a temporary directory (e.g. replace `/usr` with `/tmp/install` above). + ## License gnome-extensions-app is distributed under the terms of the GNU General Public License, version 2 or later. See the [COPYING][license] file for details.