-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Appimage? #20
Comments
Hi, |
I'm in favour of AppImage too. |
+1 |
@Adesin-fr @nokyan |
Being able to get resources from the AUR with a pkgbuild would be great for me! What do you think of that? :) |
Sure, But I don't have any package installed with flatpak : I had to install flatpak just to run Resources ! |
Sure |
Do all of these dependencies have to be so new?
For example Ubuntu 22.04 has gtk4 4.6.2 in repos and building AppImage on Ubuntu runner would require compiling entire gtk4. |
Yes, they do. Resources requires GtkInscription which is a gtk ≥ 4.8 feature and AdwOverlaySplitView which is a libadwaita ≥1.4 feature. |
@pktiuk any progress? Having this as an Appimage would be awesome! |
For now not. AppImage should be compiled on Ubuntu 20.04 (to ensure that glib is not too new), and there are a lot of packages in repositories which are too old for resources app, so they have to be compiled from source to meet dependencies. This is a daunting task, so I want to try to build appimage inside of flatpak runtime. |
How could I open a required flatpak runtime and launch some commands inside of it? I tried to use Flatpak for vscode , but command
|
If you only want to access the runtime itself, try |
Your answer helped me a lot. I have a basic instruction which could be used as a base for building AppImage flatpak-builder --socket=fuse --run .flatpak/repo build-aux/net.nokyan.Resources.Devel.json "bash"
mkdir /tmp/AppDir
meson . build --prefix=/tmp/AppDir
ninja -C build install
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
chmod +x linuxdeploy-x86_64.AppImage
chmod +x appimagetool-x86_64.AppImage
./linuxdeploy-x86_64.AppImage --appdir /tmp/AppDir
./appimagetool-x86_64.AppImage AppDir/ But there is a problem with running AppImages inside of Flatpak
Extracting it not helped
|
Would it be possible to release an appimage on gitlab of your software for those who don't have/want to use flatpack or depend (be traced) on flathub?
The text was updated successfully, but these errors were encountered: