I have made an AppImage via:
linuxdeploy --appdir AppDir --icon-file icon.png --desktop-file desktop.desktop --executable myExecutable --output appimage
which runs fine. However, the program I've packaged (myExecutable
) makes shell calls (say to shellProgram1
, shellProgram2
, ...) at run-time to make use of various programs that aren't necessarily on every distro.
Question: Does linuxdeploy
(or some other AppImage utility) provide an easy way to package these programs into the AppImage, so that when myExecutable
calls them at run-time, they are guaranteed to be available?