diff options
| author | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-01-18 01:25:15 +0100 |
|---|---|---|
| committer | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-01-18 01:29:53 +0100 |
| commit | ca780c35c2f6bb23788eefd53b7a7625d15d80d8 (patch) | |
| tree | 9c8feec5bde5927058a15a815bdee696bfe8c815 /Makefile | |
| parent | 5ab839d56067e026f07309c7153b5572e725d171 (diff) | |
Clean old AppImage, reintroduce arch pkg
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -123,6 +123,7 @@ $(linuxdeploy): package-appimage: build $(linuxdeploy) ifeq ($(findstring linux,$(target)),linux) + @rm -f *.AppImage @$(eval appdir := $(shell mktemp -d)) @install -Dm0755 target/$(target)/$(output_dir)/$(app_name) $(appdir)/usr/bin/$(app_name) @install -Dm0644 resources/logo.svg $(appdir)/usr/share/icons/hicolor/scalable/apps/systems.tranquil.Map.svg @@ -139,7 +140,7 @@ ifeq ($(findstring linux,$(target)),linux) @rm -rf $(appdir) endif -package: package-rpm package-deb package-tar package-flatpak package-appimage +package: package-rpm package-deb package-tar package-pacman package-flatpak package-appimage # Distribution ################################################################# @@ -161,12 +162,10 @@ distribute-pacman: distribute-appimage: @$(call sign_and_deploy,$(filename).AppImage) -distribute: distribute-rpm distribute-deb distribute-tar distribute-flatpak distribute-appimage +distribute: distribute-rpm distribute-deb distribute-tar distribute-pacman distribute-flatpak distribute-appimage release: package distribute -arch: package-pacman distribute-pacman - # We can't do cross compile, so for now let's just make it easy to release # on arm here arm: |