Change flatpak bundle makefile name

This commit is contained in:
Aurélien Hamy 2022-05-01 16:23:47 +02:00
parent 0f069d9ca4
commit 3456352b59
2 changed files with 2 additions and 5 deletions

View File

@ -60,7 +60,7 @@ export_flatpak: prepare_flatpak
@flatpak-builder --gpg-sign=$(GPG_KEY_ID) --repo=docs --state-dir=flatpak/flatpak-builder --force-clean flatpak/build $(APPNAME).yml
@flatpak build-update-repo --generate-static-deltas --gpg-sign=$(GPG_KEY_ID) docs
flatpak_bundle: build_flatpak
bundle_flatpak: build_flatpak
@echo "Create a flatpak bundle"
@flatpak build-bundle --gpg-sign=$(GPG_KEY_ID) --state-dir=flatpak/flatpak-builder docs deezer.flatpak $(APPNAME)
@ -68,9 +68,6 @@ install_flatpak: prepare_flatpak
@echo "Build and install locally the flatpak image"
@flatpak-builder --force-clean --state-dir=flatpak/flatpak-builder --user --install flatpak/build $(APPNAME).yml
run_flatpak:
@flatpak run $(APPNAME)
#! PACKAGES

View File

@ -56,7 +56,7 @@ make export_flatpak
To build it and create a bundle, which is then installable offline:
```sh
make flatpak_bundle
make bundle_flatpak
```
Please not that in order to export the built flatpak image to your local repo or create a bundle, you will need to change `$(GPG_KEY_ID)` in the `Makefile` to use your gpg key.