aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorRubén Beltrán del Río <jj@r.bdr.sh>2026-04-06 12:17:57 +0200
committerRubén Beltrán del Río <jj@r.bdr.sh>2026-04-06 12:23:58 +0200
commit2a28a38db1e8251611389e7ab6ab3c2c1ee21187 (patch)
treeb098109c16128369e3fdca9550f133efb32f42d7 /justfile
parentbc54383253343c32a856ebbc465f7f8a7243ffc2 (diff)
Make flatpak dirs configurable, use _
Diffstat (limited to 'justfile')
-rw-r--r--justfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/justfile b/justfile
index 31e37da..1bcd0e3 100644
--- a/justfile
+++ b/justfile
@@ -5,6 +5,8 @@ app_name := "map"
channel := "unstable"
builddir := "_build"
distdir := "_dist"
+flatpakdir := "_flatpak"
+repodir := "_repo"
clean_images := ""
# Derived Values ---------------------------------------------------------------
@@ -86,8 +88,8 @@ update_flatpak_dependencies:
# Builds a flatpak and exports the .flatpak file
package-flatpak: _ensure_distdir update_flatpak_dependencies
- flatpak-builder --force-clean --user --install-deps-from=flathub --repo=repo --install builddir ./build-aux/flatpak/systems.tranquil.Map.yml
- flatpak build-bundle repo {{distdir}}/{{filename}}.flatpak systems.tranquil.Map
+ flatpak-builder --force-clean --user --install-deps-from=flathub --repo={{repodir}} --install {{flatpakdir}} ./build-aux/flatpak/systems.tranquil.Map.yml
+ flatpak build-bundle {{repodir}} {{distdir}}/{{filename}}.flatpak systems.tranquil.Map
_fetch-linuxdeploy:
@mkdir -p .cache