mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
flatpak-builder: add page (#6089)
This commit is contained in:
parent
8200d3cb8a
commit
0a5e38a2c0
1 changed files with 24 additions and 0 deletions
24
pages/linux/flatpak-builder.md
Normal file
24
pages/linux/flatpak-builder.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue