diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-05-22 20:44:50 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-05-22 20:44:50 +0300 |
commit | 6f3ab04eb9fc9035db938cf0a3e4e66e8224ed6f (patch) | |
tree | eb2217ea492bcc49356ada77be5de8b10ea4e014 /AppImage | |
parent | 3148f39bdb31fa2dd3e1ab5de535dd733e489c5c (diff) | |
download | sciteco-6f3ab04eb9fc9035db938cf0a3e4e66e8224ed6f.tar.gz |
Gtk AppImage: exclude libglib to improve portability
* Since they blacklist Pango among other things, it would use the Pango from the host system with the glib from the AppImage,
which resulted in a version mismatch on Linux Mint 21.1.
* It is now confirmed to work at least on Linux Mint 21.1.
* The Curses AppImage still bundles libglib as SciTECO should be the only thing referencing its functions.
Diffstat (limited to 'AppImage')
-rwxr-xr-x | AppImage/gtk.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/AppImage/gtk.yml b/AppImage/gtk.yml index 158ccce..d49e308 100755 --- a/AppImage/gtk.yml +++ b/AppImage/gtk.yml @@ -8,6 +8,10 @@ union: true ingredients: packages: - sciteco-gtk + exclude: + # pkg2appimage blacklists Gtk, Pango and other libs from the GNOME stack, + # so excluding glib as well should actually improve portability. + - libglib2.0-0 dist: focal sources: - deb http://archive.ubuntu.com/ubuntu/ focal main universe |