Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# flatpak-builder
> Help build application dependencies.
> More information: <https://docs.flatpak.org/en/latest/flatpak-builder-command-reference.html>.
- 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}}`