go-appimage
go-appimage copied to clipboard
many library can't be import automatically:
many library can't be import automatically:
2021/03/27 02:05:10 Perhaps it is not dynamically linked, or perhaps it is a script. Continuing...
patchelf --print-rpath /lib/x86_64-linux-gnu/libaudio.so.2
ERROR patchelf --print-rpath /lib/x86_64-linux-gnu/libaudio.so.2: : exec: "patchelf": executable file not found in $PATH
2021/03/27 02:05:10 Perhaps it is not dynamically linked, or perhaps it is a script. Continuing...
exec: "patchelf": executable file not found in $PATH
How did you install appimagetool? Please retry with one of the AppImages we are providing on https://github.com/probonopd/go-appimage/releases
@probonopd can you explain me to use correctly go-appimage, i create a deb and i would like use source from ubuntu official repos, from ppa and from another from download.opensuse.org/repositories ? how to create an appimage with Qt libexec ?
Hello @Paullux, which is the application you are trying to make an AppImage of? Does it have a GitHub repository?
Here are some real-world examples:
- https://github.com/probonopd/dfilemanager/blob/master/.github/workflows/main.yml
- https://github.com/probonopd/altairsim.AppImage/blob/master/.github/workflows/build.yml
The app repo : https://github.com/handyopensource/dvkbuntu-easy-menu-qt
The ppa source repo : https://github.com/handyopensource/dvkbuntu-ppa-20.04 The ppa : https://launchpad.net/~dvkbuntu/+archive/ubuntu/dvkbuntu-ppa-20.04
The app is a c++ app with shell script, it is depanding from ppa package and another repo for Ubuntu
Something along those lines should do:
https://github.com/probonopd/dvkbuntu-easy-menu-qt/blob/patch-1/.github/workflows/main.yml
But I am running into an error
Processing triggers for libc-bin (2.27-3ubuntu1.4) ...
Error: Process completed with exit code 1.
on GitHub Actions which I don't know how to resolve. This has nothing to do with AppImage nor your application.
I was forgotten to said you that i would like the "Colorisation" branch of dvkbuntu-easy-menu-qt that i would like to create an appimage.
Well, the Error: Process completed with exit code 1.
is currently the showstopper anyway. Can you help search for a solution?
Asked at https://github.community/t/error-process-completed-with-exit-code-1/170997
Do you have news about create a appimage from my Github Repo with branch Colorisation ???
can you explain me to use main.yml ? In forum, where the question asked, someone said to do apt upgrade
to update libc-bin to new version and that will be worked...
Hello @Paullux unfortunately I didn't get a concrete enough response on https://github.community/t/error-process-completed-with-exit-code-1/170997 yet.
can you explain me to use main.yml
https://docs.github.com/en/actions has all the information on GitHub Actions and what can be done with them. The file tells GitHub what to do when something is pushed into the repository. We want to tell it to make an AppImage, and currently this already fails at the phase where it is supposed to install the dependencies for compiling your application.
I am now also getting the dreaded exec: "patchelf": executable file not found in $PATH
:
- https://github.com/probonopd/go-appimage/issues/208
Hi @Paullux, I hope the bug is fixed. Would you like to give it another try?