我通过以下方式制作了 AppImage:
linuxdeploy --appdir AppDir --icon-file icon.png --desktop-file desktop.desktop --executable myExecutable --output appimage
运行良好。但是,我打包的程序 ( ) 在运行时myExecutable
进行 shell 调用(比如 to shellProgram1
、shellProgram2
、 ...),以利用不一定在每个发行版上的各种程序。
问题:(或其他一些 AppImage 实用程序)是否linuxdeploy
提供了一种将这些程序打包到 AppImage 中的简单方法,以便myExecutable
在运行时调用它们时保证它们可用?