We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
No description provided.
The text was updated successfully, but these errors were encountered:
I tried to run it, and get a lot of error.
But some of them is missing qt6's dependencies.
Here is a lazy solution
namcap *.pkg.tar.zst \ | grep "E: Dependency (.*?) detected and not included" --only-matching --perl-regexp \ | cut -d' ' --fields 3
Sorry, something went wrong.
then ignore those "lacks" and "unused"
namcap *.pkg.tar.zst | grep -v "lacks " | less
those Insecure RUNPATH I have no idea, so I leave them there.
Insecure RUNPATH
namcap *.pkg.tar.zst \ | grep -v "lacks " \ | grep -v -i "unused" \ | grep --perl-regexp --only-matching "Referenced library .*? is an uninstalled dependency" \ | cut --delimiter ' ' --fields=3
returns
'osascript' 'libpcre.so.3' 'libselinux.so.1' 'libtinfo.so.6' 'libffi.so.7'
after using pkgfile -s, libselinux.so.1, osascript is not found, libffi.so.7 is provided by *conda, so I thought them can be ignored.
pkgfile -s
libselinux.so.1
osascript
libffi.so.7
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: