From 9e9faae650c8ac61ffccb7b7e3707135b0d0e255 Mon Sep 17 00:00:00 2001 From: Justin W. Flory (he/him) Date: Jan 23 2025 18:04:28 +0000 Subject: 🔧 Makefile: Migrate Inkscape command from RPM to Flatpak This commit changes the Makefile incantation to instead make a call to the official Inkscape Flatpak in Fedora, instead of the RPM package. This is a potentially disruptive change, as anyone using the Makefile will have to also install Inkscape as a Flatpak for this to work. Signed-off-by: Justin W. Flory (he/him) --- diff --git a/images/Makefile b/images/Makefile index 270b336..6767787 100644 --- a/images/Makefile +++ b/images/Makefile @@ -8,7 +8,7 @@ help: all: help %.png: %.svg - @inkscape --export-area-page --export-width=1890 --export-filename=$@ $< + @flatpak run org.inkscape.Inkscape --export-area-page --export-width=1890 --export-filename=$@ $< %.jpg: %.png @magick $< $@