From ca780c35c2f6bb23788eefd53b7a7625d15d80d8 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Sun, 18 Jan 2026 01:25:15 +0100 Subject: Clean old AppImage, reintroduce arch pkg --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4b56b7e..9f103e3 100644 --- a/Makefile +++ b/Makefile @@ -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: -- cgit