You are not logged in.
Pages: 1
Dear fellow forum members.
Someone must have already asked.
But I want a list of which optional dependencies I haven't installed and what they are good for.
Expected result:
Név : vlc
Leírás : Multi-platform MPEG, VCD/DVD, and DivX player
Opcionális függőségek :
libva-intel-driver: video backend intel
lua-socket: http interface
live-media: streaming over RTSP
It would be good to query a program and the entire system.
I've been trying to get chatgpt to work for half a day now, but it doesn't want to do it in either awk or python.
Thanks
Offline
pacman -Qi <pkg>
pacman -Qi
If you've got 'pacman-contrib':
man pactree
Don't know (what you mean) about scatgpt
Offline
Just for the fun of it. I'll stick my head out and point out that something like
pacman -Qi engrampa | tr "\n" "!" | sed "s/! / /g" | tr "!" "\n" | grep "Optional Deps" | sed "s/Optional Deps//g" | sed 's/ : //g' | sed 's/ /!/g' | tr "!" "\n" | awk 'NF' | grep -v installed
should produce something like
caja: Caja support
unace: ACE archive support
and you should be able to do something like that for each of the outputs in pacman -Qe
It's butt ugly though, so it bound to be better done some other way
Offline
Pages: 1