From 0a5e38a2c037fad68bd3c23ff0860bf1834e90dd Mon Sep 17 00:00:00 2001 From: Seth Falco Date: Sun, 6 Jun 2021 00:23:42 +0200 Subject: [PATCH] flatpak-builder: add page (#6089) --- pages/linux/flatpak-builder.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/flatpak-builder.md diff --git a/pages/linux/flatpak-builder.md b/pages/linux/flatpak-builder.md new file mode 100644 index 000000000..0b1ab7b2a --- /dev/null +++ b/pages/linux/flatpak-builder.md @@ -0,0 +1,24 @@ +# flatpak-builder + +> Help build application dependencies. +> More information: . + +- Build a Flatpak and export it to a new repository: + +`flatpak-builder {{path/to/build_directory}} {{path/to/manifest}}` + +- Build a Flatpak and export it to the specified repository: + +`flatpak-builder --repo={{repository_name}} {{path/to/build_directory}} {{path/to/manifest}}` + +- Build a Flatpak and install it locally: + +`flatpak-builder --install {{path/to/build_directory}} {{path/to/manifest}}` + +- Build and sign a Flatpak and export it to the specified repository: + +`flatpak-builder --gpg-sign={{key_id}} --repo={{repository_name}} {{path/to/manifest}}` + +- Run a shell inside of an application sandbox without installing it: + +`flatpak-builder --run {{path/to/build_directory}} {{path/to/manifest}} {{sh}}`